<?php wp_list_categories('title_li=<h3>Categories</h3>'); ?> <?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?> <?php wp_list_bookmarks(); ?> <?php } ?> <li><h3>Archives</h3> <ul class=\"last\"> <?php wp_get_archives('type=monthly'); ?> </ul>
<h3>Sites We Follow</h3><ul> <?php wp_list_bookmarks('title_li=&categorize=0'); ?></ul>
Wordpress has stuff in the sidebar like Blogroll, Categories, Pages and Archives usually out of the box.
I'm working on a site that needs to change "Blogroll" to "Sites we follow". I also need "Archives" and "Categories" to have titles that are H3's.
Unfortunately WP outputs these things all sort of different. at least to me heh. So I'm looking for the way to make them all similar
thats the current code i have.
what it outputs is this:
http://digitalskraps.com/clients/mackerel/images/picture1.png
the sites we follow isnt an H3. I could hardcode the h3's in there, i dont mind that, but i can figure out how to take that one out.
so any help for how to make them uniform?