More

[WP Review Pro] Disable Reviews For a Specific Post Type

Looking for a way to disable reviews for a specific post type?

Not sure why My Theme Shop has not added the ability to do this from the WP Review Pro plugin's UI.

There is a way to get this done with a simple snippets.

In WP Review Pro, to disable the review functionality completely for specific post types; meaning no review meta boxes or rating column in the post. Add the following code snippet to the file functions.php of your theme.

add_filter( 'wp_review_excluded_post_types', function( $post_types ) {
	$post_types[] = 'page';
	$post_types[] = 'custom-post-type';
    $post_types[] = 'another-custom-post-type';
	return $post_types;
} );

You can add as many custom post types as you need.

Please note that you do not need to add attachments to this snippet as those are disabled by default.

Glenton
I design and develop experiences that make people's lives simple.

Leave a Reply

Your email address will not be published. Required fields are marked *

User Review
  • User Experience
    Sending
  • Features
    Sending
  • Cost
    Sending
  • Support
    Sending

Post a Review

Leave a Reply

Your email address will not be published. Required fields are marked *

User Review
  • User Experience
    Sending
  • Features
    Sending
  • Cost
    Sending
  • Support
    Sending