Anyone edit this Little Problem for Me (WORDPRESS PROBLEM) Check this Theme: When i am Using this theme and enabling " Show Post COunt" (to show post counts with categories) , the Post counts are showing under Category's Name, I want this count to be with Category name how can i do this Picture Download Link:
I took a quick look at this theme's code... The default sidebar.php file has this: <ul><li class="listHeader"><h2><?php _e('Categories'); ?></h2></li> <?php wp_list_cats('sort_column=name&optioncount=0&hierarchical=0'); ?> </ul> PHP: Maybe move the function "wp_list_cats" inside the <h2> tags like so? <ul><li class="listHeader"><h2><?php _e('Categories'); ?> <?php wp_list_cats('sort_column=name&optioncount=0&hierarchical=0'); ?> </h2></li> </ul> PHP: Also note: The theme's default of "optioncount=0" is set not to display post counts... you probably have already changed that. And "wp_list_cats" is now "wp_list_categories"... so if you have the latest version... you may want to try that too... with the option "&show_count=1" instead of "optioncount".