WordPress-从侧边栏隐藏类别

时间:2018-07-22 13:35:12

标签: wordpress

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

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

<?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 - Exclude a category from appearing in menu or sidebar widgets

0 个答案:

没有答案