Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'jnews_ads_global_enable', 'disable_ads_on_spesific_cat', 99, 3 );
- function disable_ads_on_spesific_cat( $flag, $post_id, $location ) {
- if ( has_category( array( 'your-category-slug-1', 'your-category-slug-1' ), $post_id ) ) {
- return false;
- }
- return $flag;
- }
Advertisement
Add Comment
Please, Sign In to add comment