首页 > 解决方案 > Wordpress - 从侧边栏中隐藏类别

问题描述

我正在为我的网站使用“最近查看的帖子”小部件,显示访问者最近访问的帖子/页面,默认情况下,小部件显示列表中的所有类别帖子,我需要一种方法来隐藏小部件中的帖子类别。

无论如何,这是我的代码。

<?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”);
?>

我从这里拿了这个:Wordpress - 排除一个类别出现在菜单或侧边栏小部件中

标签: wordpress

解决方案


推荐阅读