Clickable number of posts in category
-
Hi there,
I am really bad in php and I have got one problem.
I would like to display Category and number of posts in Category under. This number should be clickable as well like it would be only one button.<div class="categories"> <ul> <?php $variable = wp_list_categories('title_li&echo=0&show_count=1'); $variable = str_replace( '(', 'Posts: ', $variable); $variable = str_replace( ')', '', $variable); echo $variable; ?> </ul> </div>
I did only the first part, thanks to CSS I can see number of posts unber Category name. Unfortunetly cannot do the second one – make number of posts clickable, like the whole thing would be only one button.
Please help me…
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Clickable number of posts in category’ is closed to new replies.