Category Issue
-
Hi Guyz,
Appreciate if anyone could help me on this. I found the script here but this doesn’t seems to work.
I injected below script in post-ratings/post-ratings.php. I tick and untick post select in the settings. but didn’t work.
add_filter(‘post_ratings_visibility’, ‘rate_only_my_category’);
function rate_only_my_category(){
$categories = get_the_category();
foreach($categories as $category)
if($category->name === ‘articles’) return true;
// don’t display
return false;
}Please help
- The topic ‘Category Issue’ is closed to new replies.