Customising The Default WordPress Theme: 1

Posted on Saturday, October 3rd, 2009 at 11:03 pm in

Adding A Sidebar To Every Page

  1. Within the WordPress Administration area, navigate to Appearance / Editor.
  2. Select single.php and change:
    <div id="content" class="widecolumn" role="main">
    

    to

    <div id="content" class="narrowcolumn">
  3. Then change:
    <?php get_footer(); ?>

    to:

    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

Repeat the last 2 steps for archives.php, links.php & image.php

You might also be interested in

WordPress Theme Development

Top