如何编辑wp类别小工具

时间:2011-10-21 作者:Y2ok

如何编辑wp category小部件,使其不会显示指定类别中的一个?例如,它显示列表中的所有类别,我需要删除类别图书,如何才能从中删除?祝你一切顺利,YOK

1 个回复
最合适的回答,由SO网友:EarnestoDev 整理而成

// This alters the get get_terms() arguments and hides some categories
function widget_category_excluder( $args ) {
    // Replace the numbers with category IDs you need hidden
    $args[\'exclude\'] = $args[\'exclude\'].\',1,2,3,\'; // Keep it safe!
    // Or use exclude_tree to exclude children categories also
    // $args[\'exclude\'] = $args[\'exclude\'].\',1,2,3,\'; // Keep it safe!
    // (,1,2,3, is enclosed in \',\' to ensure digits don\'t get welded)
    // Test and see what fits your needs best
    return $args;
}
// This allows hooking into WP_Widget_Categories and excluding Terms
add_filter( \'widget_categories_dropdown_args\', \'widget_category_excluder\' );
add_filter( \'widget_categories_args\', \'widget_category_excluder\' );
将此代码添加到functions.php 和实验。这是一个快速解决方案。更好的替代方案是一个可以隐藏类别的自定义小部件。

当做

结束

相关推荐

我用index.htm隐藏了站点,但现在无法访问index.php

我正试图在网上建立一个新的Wordpress网站。我通过建立索引来“隐藏”网站。htm,以便访问者看到此html,其中包含一些关于“维护”的文本,而不是Wordpress站点。但现在如果我去www.example。com/索引。php它重定向到www.example。com/and显示索引。htm。我无法预览我在管理中正在执行的操作。无论如何,我可以更改Wordpress设置,使其不会重定向/索引。php到/?提前谢谢。