When I use this code <?php wp_list_categories(); ?> for adding list of categories it automatically adds "Categories" title and only after this it show the list of categories. How can I remove it?
When I use this code <?php wp_list_categories(); ?> for adding list of categories it automatically adds "Categories" title and only after this it show the list of categories. How can I remove it?
Here you go:
http://codex.wordpress.org/Template_Tags/wp_list_categories#Display_or_Hide_the_List_Heading
Basically, in your template, you change this:
<?php wp_list_categories(); ?>
to this:
<?php wp_list_categories('title_li='); ?>
It works. Thank you very much!
This topic has been closed to new replies.