Advertisement
phpface

Untitled

Oct 7th, 2017
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. if( ! function_exists( 'filter_the_scrolling_post_args' ) ){
  2.     /**
  3.      *
  4.      * Filter the query post args
  5.      *
  6.      * @param array $args
  7.      * @return array
  8.      *
  9.      */
  10.     function filter_the_scrolling_post_args( $args ) {
  11.         // https://codex.wordpress.org/Class_Reference/WP_Query#Category_Parameters
  12.         $args['category__not_in'] = array( 978 );
  13.         return $args;
  14.     }
  15.     add_filter( 'mars_scrolling_post_args' , 'filter_the_scrolling_post_args', 10, 1 );
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement