bestcssdesigns
Member
Posted 3 years ago #
Hi,
To get the categories in the sidebar I use
<?php wp_list_categories('show_count=0'); ?>
To get the links, I use
<?php wp_list_bookmarks('category_orderby=id'); ?>
I was wondering, is it possible to get the title removed from these.
It keeps showing Categories and Blogroll at the top and I don't want any titles.
You can see it in the tabs at http://www.bestcssdesigns.com
<?php wp_list_categories('show_count=0&title_li='); ?>
<?php wp_list_bookmarks('category_orderby=id&title_li='); ?>
bestcssdesigns
Member
Posted 3 years ago #
Thanks. The first one worked, however, the second one didn't and the title Blogroll is still there.
bestcssdesigns
Member
Posted 3 years ago #
bestcssdesigns
Member
Posted 3 years ago #
<?php wp_list_bookmarks('category_orderby=id&title_li='); ?>
Howcome that doesn't remove the blogroll title?