Advertisement
arie_cristianD

categories_widgets_filter

Aug 25th, 2023
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. //Only display parrent category in categories widgets
  2.  
  3. add_filter( 'widget_categories_args', 'category_widgets' );
  4.  
  5. function category_widgets( $cat_args ) {
  6.     $cat_args['parent'] = 0;
  7.     return $cat_args;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement