arie_cristianD

disable jnews ads on post page with spesific categories

Jul 23rd, 2025
1,323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. add_filter( 'jnews_ads_global_enable', 'disable_ads_on_spesific_cat', 99, 3 );
  2.  
  3.  
  4. function disable_ads_on_spesific_cat( $flag, $post_id, $location ) {
  5.     if ( has_category( array( 'your-category-slug-1', 'your-category-slug-1' ), $post_id ) ) {
  6.         return false;
  7.     }
  8.     return $flag;
  9. }
  10.  
Advertisement
Add Comment
Please, Sign In to add comment