Viewing 3 replies - 1 through 3 (of 3 total)
  • I saw the information to add the links to the sidebar. The links are available as a widget.

    However, how do we add the links blogroll to our main menu?

    @nadworks

    Here is how to add the links to a page:

    STEP 1: you must create a links.php template page which will call the links. You can use something like this for your theme:

    <?php
    /*
    Template Name: Links
    */
    ?>
    
    <?php get_header(); ?>
    
    <?php get_sidebar(); ?>
    
    <h1><?php the_title(); ?></h1>
    
    <ul><?php wp_list_bookmarks(); ?></ul>
    
     <?php get_footer(); ?>

    STEP 2: In your admin panel, create a new page called “Links”. Assign that page with the template “Links”

    STEP 3: In your admin panel, add the page “Links” to your main menu.

    Hope this will help you!

    Thank you likemindsdesigns…that was very helpful….

    Any ideas how to style the links so that I can get 3 columns? I am not really interested in a category listing because the client is really only dealing with one category….

    Thanks for your help…

    BTW….I am working in WP 3.6 but I did install this…http://wordpress.org/plugins/link-manager/

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to display links’ is closed to new replies.