在WordPress分类目录小工具中显示空的分类 – WordPress 教程

2022年 10月 24日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

在WordPress分类目录小工具中显示空的分类 – WordPress 教程

WordPress分类目录小工具默认不会显示没有文章的分类。 有时一个新站在规划分类栏目时可能需要在侧边小工具中显示空的分类名称,那么可以将下面的代码添加到当前主题functions.php模板中即可:

add_filter( 'widget_categories_args', 'wpb_force_empty_cats' ); function wpb_force_empty_cats($cat_args) { $cat_args['hide_empty'] = 0; return $cat_args; }

通过 wpb_force_empty_cats 改变默认 widget_categories_args 过滤器,将 hide_empty 设置为false,从而显示空的分类目录。

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: