Answer the question
In order to leave comments, you need to log in
Wordpress Walker - how to add number of entries to menu items (categories)?
The main menu consists of links to category pages.
I want to display the number of entries in it inside each link after the name of the category.
Editing walker .
I get quantity:
$item_count = $depth == 0 ? get_posts( array(
'post_type' => 'post',
'numberposts' => -1,
'orderby' => 'category',
'order' => 'ASC'
) ) : false;
$item_output .= $item_count ? ' <span class="item_count">(' . count( $item_count ) . ')</span>' : '';
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question