List Category Count as "1 Entry"
-
On my Archives page, I’d like to show the category count for categories with a single post as “1 Entry” and categories with multiple posts as “X Entries”
Here’s a link to the page https://womopage.net/sandbox/archives/
And here’s the current code I’m using:
<?php $variable = wp_list_categories('title_li=&echo=0&show_count=1'); $variable = str_replace( '(', '<span class="cat-count">', $variable); $variable = str_replace( ')', ' Entries</span>', $variable); echo $variable; ?>
How can I make this code detect categories with only one post?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘List Category Count as "1 Entry"’ is closed to new replies.