Remove specific post categories fro recent posts widget
-
Hi – I am trying to work out how I can remove a specific posts (by category id) from displaying in the recent posts sidebar widget.
I have used this code to remove them from the categories widget (the category id I want to remove is 7) but I cannot work out how to do the same for the recent posts widget.
add_filter('widget_categories_args', 'remove_categories'); function remove_categories($cat_args){ $cat_args['exclude']=array(7); return $cat_args; }
Anyone able to help out please?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Remove specific post categories fro recent posts widget’ is closed to new replies.