Advertisement
arie_cristianD

exclude specific ads from being hidden

Mar 14th, 2024
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1.  
  2. add_filter( 'jnews_ads_global_enable', 'exclude_hidden_ads', 99, 3 );
  3.  
  4.  
  5. function exclude_hidden_ads( $flag, $post_id, $locations ) {
  6.     if ( 'article_bottom' === $locations ) {
  7.         $flag = true;
  8.     }
  9.     return $flag;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement