• Hello,

    I would like to show a single category of links, but without showing the category.

    What I have now is:

    <ul>
    <?php wp_list_bookmarks('orderby=order&category=37&category_orderby=order'); ?>
    </ul>

    The output is:
    Category name
    link
    link
    link

    I only want:
    link
    link
    link

    Is it possible?

    Thank you in advance,
    Michael

Viewing 2 replies - 1 through 2 (of 2 total)
  • Use the categorize=0 argument with the template tag, wp_list_bookmarks().

    Thread Starter Michael Johansen

    (@johanzen)

    Hi MichaelH,

    Thank you for your answer. I had tried to figure out the template tags, but as I’m mostly guessing when it come to php, I am (also) mosty lost ??

    Now I have:
    wp_list_bookmarks('orderby=order&category=37&categorize=0&category_orderby=order');

    The output is now:
    Bookmarks
    link
    link

    So instead of the categories, I now have a headline named Bookmarks.
    I do not what any kind of headline at all – only the links…..

    Example at https://freealternativeenergy.info – upper right corner.

    Thank you for trying to help ??
    Michael

    Figured it out ??

    <?php wp_list_bookmarks('orderby=order&category=37&categorize=0&title_li=&category_orderby=order'); ?>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to show the blogroll without the category?’ is closed to new replies.