Guest User

Untitled

a guest
Jan 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. add_filter( 'techmarket_search_categories_filter_args', 'tm_show_only_root_categories_in_search', 20 );
  2.  
  3. function tm_show_only_root_categories_in_search( $args ) {
  4. $args['hierarchical'] = 1;
  5. $args['hide_empty'] = 0;
  6. return $args;
  7. }
Add Comment
Please, Sign In to add comment