• Resolved drew68

    (@drew68)


    hello eveyrone…

    i need to add a blogroll(links to our other blogs) in my side bar below the Categories section.

    i’ve edited the index.html and the index.php in my wordpress ‘default’ folder as well as the sidebar.php page. and nothing is happening.

    does anyone know what i might be doing wrong?

    thanks,

    drew

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello

    You create the Blogroll in the wp control panel at your-site.com/wp-admin/ under the links section, than to display them use:

    <?php get_links_list(); ?>

    Or, if you want to split them up into different link categories and display them seperately you can use this:

    <?php wp_get_links(1); ?>

    The ‘1’ is the Category ID number, you can also use the name of the category.

    <?php wp_get_links(category name); ?>

    Thread Starter drew68

    (@drew68)

    bpartch…thanks for posting that for me.

    it actually worked…i had to put that in my index.html page.

    but the actual links are not showing as you can see here

    https://www.paintlessdentrepairtricks.com/

    i got the actual blogroll title but the links don’t appear…

    like it should be here https://www.gopaintless.com/gopaintless/

    thanks for your help ??

    drew

    Bpartch

    what file(and where) would you place this code…
    <?php wp_get_links(category name); ?>

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘adding blogroll to my template’ is closed to new replies.