是否有一个简单的解决方案(例如插件)用于排除菜单或侧边栏中出现的类别? 我创建了一个名为“视频”的帖子类别,显示youtube视频(自然!!)但后来我意识到他们正在我的“最近帖子”边栏中显示,我正在寻找一种简单的方法来排除它们
非常感谢任何想法
谢谢!
答案 0 :(得分:11)
我在WordPress论坛中找到了this代码,它似乎完全符合您的需求:
<?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");
?>
将代码放在主题的functions.php中。
答案 1 :(得分:1)
您可以使用简单的插件窗口小部件,而不是指定某些类别
http://wordpress.org/extend/plugins/custom-recent-posts-widget