Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'widget_categories_args', 'custom_filter_cat_widgets', 99, 2 );
- function custom_filter_cat_widgets( $cat_args, $instance ) {
- $cat_args['exclude'] = array( 1, 2, 443 ); /* list of categoeies id you want to hide */
- return $cat_args;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement