Skip to main content

Automatically Approve Comments in a Certain Post Category

Coding tutorial: How to automatically approve all comments made on posts in a specific category.
Mohmoh submitted a question about how to approve comments that are made on a post in a specific category:
I had used this code to automatically approve comments of a specific category but after the last update wordpress 4.4 this code not work:
add_filter( 'pre_option_comment_moderation', 'auto_aprove_posts_b' );
add_filter( 'pre_option_comment_whitelist', 'auto_aprove_posts_b' );

function auto_aprove_posts_b( $option ) {
    if( in_category( '20' ) )
        return 0;

    return $option;
}
do you know how to automatically approve comments in the posts of a specific category?
mohmoh
To do this in WordPress, you’d want to hook into the pre_comment_approvedfilter. This filter allows you to adjust the comment’s approval status before adding it to the database.
The filter accepts two parameters:
  1. $approved – The current approval status before you modify it. This is what we’ll be changing (under certain circumstances).
  2. $commentdata – An array of data about the comment, including the ID of the post it corresponds to. We’ll need to use this when checking the category the post is in.
The code for this is quite simple:
function auto_approve_comments_in_category( $approved, $commentdata ) {
 $cat_id = 10; // This needs to be the ID of the category you want to approve.
 
 // If the post being commented on is in our category, always approve the comment.
 if( in_category( $cat_id, $commentdata['comment_post_ID'] ) ) {
  return 1;
 }
 
 // Otherwise, return the original approval status.
 return $approved;
}

add_filter( 'pre_comment_approved' , 'auto_approve_comments_in_category' , '99', 2 );
If you want, you could use this same code for other applications. For example: automatically approving comments on one specific post. Here’s how that would look:
function auto_approve_comments_on_post( $approved, $commentdata ) {
 $post_id = 503; // This needs to be the ID of the post you want to approve comments on.
 
 // If the post being commented on is post ID 503, always approve the comments.
 if( $commentdata['comment_post_ID'] == $post_id ) {
  return 1;
 }
 
 // Otherwise, return the original approval status.
 return $approved;
}

add_filter( 'pre_comment_approved' , 'auto_approve_comments_on_post' , '99', 2 );

Comments

Popular posts from this blog

》¡》》》¡》 NAVIGATE Want To Spend More Time On Your Writing And Tired Of Doing It All? A Virtual Assistant Can Help Alexandra Amor Sometimes you need specific help for your situation Indie authors often have an edge of control freakery … well, I do! I like being in control and I enjoy pretty much all aspects of being an author entrepreneur. But I hit a wall about 18 months ago, and I definitely needed some help, so I started looking for a virtual assistant to help me. I had a few varied experiences and learned some lessons, and then  Alexandra Amor reached out to me with some brilliant suggestions for how she could help. Alexandra is a children's author, but she is also a fantastic virtual assistant for me and a number of other authors. I trust her to help me with key tasks in my author business, and she even suggests things that I may not have thought of. Alexandra Amor Today, Alexandra explains how a VA can help authors. Joanna has previously...
× DeviantArt DeviantArt FREE - In Google Play VIEW Deviant Art Morgan S Hazelwood 10 Questions to Ask Your Beta-readers   Morgan Hazelwood 1 year ago Advertisements Asking for Feedback Now that NaNoWriMo is over, a lot of us are asking “what’s next”? I mean, clearly there are those of us, many of us, who either didn’t finish NaNo, or whose NaNo wasn’t long enough to finish our stories, and of course the answer for us is clear – finish that rough draft. For the rest of you, run your novel through spell-check, do a few read-throughs, make sure your story says what you want it to. I like to print it out at this stage, mark it up, write pages and pages of new material on the back, sort it out by chapter, making index cards for each one… There are a lot of ways to edit it, to clean it up and make it consumable by eyes-that-aren’t-our-own. But, eventually, we’re going to have to let the manuscript go. To send it to a beta reade...
Skip to content Menu How to Add a Drop Down Menu Navigation in Blogger Posted by  Ashley 5th August, 2013 Coding Bitchin' Book Blog ,  Blogger ,  Coding ,  Drop Down Menu ,  Navigation Bar ,  Tutorial I have been trying to create drop down menus in blogger like your blog has for your reviews. I have tried a couple different tutorials and nothing seems to be working. Do you know how to do this? Thanks so much for your help, Ashley! Rebecca Lockhart I stressed over this question for WEEKS! The problem is that there is no easy way to do this in Blogger. You have to write your own HTML and CSS to get it working, and for me that isn’t a problem, but trying to explain it to non-coders is REALLY difficult. And then there’s the problem of me trying to code it for multiple different blog designs.. it just isn’t easy! Then I found a great site that suddenly made my tutorial so much easier! But keep in mind that you will still have to edit y...