Quantcast
Channel: quirm.netquirm.net » Tag » beginners
Viewing all articles
Browse latest Browse all 10

Customising The Default WordPress Theme: 1

$
0
0

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


Viewing all articles
Browse latest Browse all 10

Trending Articles