• 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

    • tag. Any help would be appreciated.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter nosleephotel

    (@nosleephotel)

    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”.

    Thread Starter nosleephotel

    (@nosleephotel)

    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: https://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>
    Thread Starter nosleephotel

    (@nosleephotel)

    Thanks for the support, froman! And thanks again for the plugin.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: My Link Order] How to remove h2 heading?’ is closed to new replies.