• Hi all,

    I am trying to create a page that displays my links.
    I have created a new template called links.php so I can use it in a new page.

    <?php
    //Template Name: Links
    ?>
    <?php get_header(); ?>
    <?php wp_list_bookmarks($args); ?>
    <?php get_footer(); ?>

    This gives me a list of my links, defined by arguments.
    This list will display from top to botom, one link a line

    link 1
    link 2
    link3
    ...

    Is it possible to get a layout like this

    link 1   link 2    link 3
    link 4   ....      ....

    I checked the argument list but none of them seem to do something like that.

    I assume this is coded in the bookmark-template.php file but my php knowledge is not that good, I tried a couple of things but I never got even close to what I am trying.

    Is there an option to do this?
    Either by a plugin, wp_list_bookmarks argument or by editing the template?

    Thanks a lot
    JohnEcash

Viewing 1 replies (of 1 total)
  • Thread Starter johnEcash

    (@johnecash)

    Nevermind this one, I got the answer I think

    I set the before and after tag, as this is default

    • it will create the list.

Viewing 1 replies (of 1 total)
  • The topic ‘wp_list_bookmarks question’ is closed to new replies.