arie_cristianD

disable inline related post on certain categories

Jul 27th, 2025
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. add_filter( 'jnews_force_disable_inline_related_post', 'disable_inline_related_in_categories', 99 );
  2.  
  3.  
  4. function disable_inline_related_in_categories( $flag ) {
  5.     $category_lists = array( 'editorial', 'opinion' ); /* change this with your list of category slug */
  6.     if ( is_single() && has_category( $category_lists ) ) {
  7.         return true;
  8.     }
  9.     return $flag;
  10. }
  11.  
Advertisement
Add Comment
Please, Sign In to add comment