Advertisement
arie_cristianD

filter categories widgets

Mar 4th, 2025
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. add_filter( 'widget_categories_args', 'custom_filter_cat_widgets', 99, 2 );
  2.  
  3.  
  4. function custom_filter_cat_widgets( $cat_args, $instance ) {
  5.     $cat_args['exclude'] = array( 1, 2, 443 ); /* list of categoeies id you want to hide */
  6.     return $cat_args;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement