Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'jnews_ads_global_enable', 'exclude_hidden_ads', 99, 3 );
- function exclude_hidden_ads( $flag, $post_id, $locations ) {
- if ( 'article_bottom' === $locations ) {
- $flag = true;
- }
- return $flag;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement