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
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
You can use the exclude parameter:
‘exclude’
(array|string) Array or comma/space-separated string of term IDs to exclude. If$hierarchicalis true, descendants of$excludeterms
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 ),
);
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0