Hi, In the word press categories section how do i stop it displaying the numbers of posts in each category ? Do i remove code from the related php file ?
Look at your sidebar.php for something like this code. <?php wp_list_cats('sort_column=name&[B][U]optioncount=1[/U][/B]&hierarchical=0'); ?> Code (markup): Replace optioncount with below given (it maybe optioncount or show_count) <?php wp_list_cats('sort_column=name&[B][U]optioncount=0[/U][/B]&hierarchical=0'); ?> Code (markup): DON.