<?php
function exclude_widget_categories($args){
$exclude = "3,6,18"; // The IDs of the excluding categories
$args["exclude"] = $exclude;
return $args;
}
add_filter("widget_categories_args","exclude_widget_categories");
?>
The method to exclude the categories from the widget is better, as it is in the file of the theme and it will work after the updating Wordpress versions.
No comments:
Post a Comment