I can't find where to remove the h2 heading that is generated by My Link Order when displaying my blogroll in the sidebar. I want to at least make it an h3 and get it out of the
I can't find where to remove the h2 heading that is generated by My Link Order when displaying my blogroll in the sidebar. I want to at least make it an h3 and get it out of the
that's supposed the be "get it out of the <li> tag.
With the widget it isn't possible to change the heading tags. If you aren't using widgets you can use the title_before and title_after parameters. If you want to override the nested list you can change category_before and category_after too.
If you can hang on, I'm working on new plugins to replace my current plugins that will include all of the available parameters on the widget itself. I'll also finally have support for multiple widget. They'll be completely new plugins and will only support WP 2.8 or greater. I'll do my best to get the word about about them so people can transition to the new plugin. The new version of My Link Order will have the unexciting name of "My Link Order 2".
Fortunately I'm not using it as a widget. But unfortunately I don't have an extensive understanding of PHP and can only modify what already exists in the code to an extent. Could you explain more please? This is what I have:
<div id="blogroll">
<?php wp_list_bookmarks('orderby=order&category_orderby=order'); ?>
</div>
Here's it live on the site: http://joemckay.net/blog
Definitely looking forward to "My Link Order 2" for the built-in function!
Can try this code to switch to <h3>'s:
<div id="blogroll">
<?php wp_list_bookmarks('orderby=order&category_orderby=order&title_before=<h3>&title_after=</h3>'); ?>
</div>Thanks for the support, froman! And thanks again for the plugin.
You must log in to post.