• Resolved josephpolk

    (@josephpolk)


    My blogroll (aka Links) disappeared from my home page after upgrading to 2.2. Here is the code that I’ve used before to display them on my blog home page:

    <h2><?php _e(‘Links:’); ?> </h2>

    <ul class=”sidemenu”>
    <?php get_links(‘1’, ”, ‘
    ‘, ‘
    ‘, 0, ‘name’, 0, 0, -1, 0); ?>

    <br/>
    <?php endif; ?>

    Thanks in advance to anyone that can help me fix this!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter josephpolk

    (@josephpolk)

    Moshu –> I’ve changed the PHP code to what you pointed me towards so that I use this:

    <h2><?php _e(‘Links:’); ?> </h2>

    <ul class=”sidemenu”>
    <?php wp_list_bookmarks(); ?>

    The problem is that when I insert that, I get the following code to come up (with no reason that I’m aware of):

    <h2>Links: </h2>

    <ul class=”sidemenu”>

    <li id=”linkcat-20″ class=”linkcat”><h2>Links</h2>

      This code, (as seen in View Source) in my browser, shows “Links” twice. I wish I knew how to fix this code to make it look the way that I want. Any suggestions? Where can you change wp_list_bookmarks?

      Thanks in advance!

    As you can see from the link moshu provided, there’s a few ‘new’ parameters in wp_list_bookmarks.

    Try:

    <?php wp_list_bookmarks('categorize=0&title_li='); ?>

    Please review that link moshu provided.

    Thread Starter josephpolk

    (@josephpolk)

    MichaelH:

    Thanks to you and Moshu for your help. I guess I didn’t understand the new parameters enough to set it up like you did. I really appreciate you guys showing me what to do. It works just great now!

    Have a great weekend!

    Joe

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Blogroll disappeared after upgrade’ is closed to new replies.