Adding BlogRolls in Wordpress

January 5, 2007 – 5:46 pm

I wrote a breif little post earlier today about this and i have found a simple way to add a BlogRoll to your site.  If you click on this link it will take you to a thread that contains more information but its a really simple fix.  Are you ready for it?

< ?php get_links_list(); ?>

This is the easiest and simplest way that I know you can add a BlogRoll to your WordPress.  All you need to do is add that code into your WordPress by going from the Dashboard to the “Presentation” section then go to the theme editor and bring up the Sidebar.php script object and add the above PHP code snippet like this…

about me

< ?php query_posts('pagename=about');?>

< ?php if (have_posts()) : while (have_posts()) : the_post(); ?>

< ?php the_excerpt();?>

< ?php endwhile; endif; ?>                    


 

< ?php get_links_list(); ?>


 

post categories

  • < ?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?>



    If you have any WordPress questions (I know I run into things that stump me from time to time) feel free to contact me or post on this site.  Mark from mashKulture contacted me earlier this week after he ran into some issues with permalink structure and the .htaccess file earlier this week that I was able to help him with.

    Luc

    WordPress’ing onward

    Post a Comment