最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

categories - Hide specific category from wp_list_categories

programmeradmin3浏览0评论

I have to hide 3 categories from the list, at the moment to view the list I use this function

function genres() {
$args = array('hide_empty' => true, 'title_li'=> __( '' ), 'show_count'=> 0, 'echo' => 0 );             
$links = wp_list_categories($args);
$links = str_replace('</a> (', '</a>', $links);
$links = str_replace(')', '', $links);
echo $links; 
}



<?php genres(); ?>

i need to hide category id 1 and 2

I have to hide 3 categories from the list, at the moment to view the list I use this function

function genres() {
$args = array('hide_empty' => true, 'title_li'=> __( '' ), 'show_count'=> 0, 'echo' => 0 );             
$links = wp_list_categories($args);
$links = str_replace('</a> (', '</a>', $links);
$links = str_replace(')', '', $links);
echo $links; 
}



<?php genres(); ?>

i need to hide category id 1 and 2

Share Improve this question asked Jul 1, 2020 at 12:49 Vincenzo PiromalliVincenzo Piromalli 1989 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

You can use the exclude parameter:

'exclude'
(array|string) Array or comma/space-separated string of term IDs to exclude. If $hierarchical is true, descendants of $exclude terms will also be excluded; see $exclude_tree. See get_terms().

So with your $args:

$args = array(
    'hide_empty' => true,
    'title_li'   => '',
    'show_count' => 0,
    'echo'       => 0,
    // Excludes specific categories by ID.
    'exclude'    => array( 1, 2 ),
);
发布评论

评论列表(0)

  1. 暂无评论