that would bring you to single.php, which does not show a sidebar by design.
to get the single.php to show the same design as the front page,
change line 10 of single.php, from:
<div id="content" class="widecolumn" role="main">
to:
<div id="content" class="narrowcolumn" role="main">
and near the end add a ‘get_sidebar();’:
so change from:
</div>
<?php get_footer(); ?>
to:
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
btw:
remember that the default theme will be overwritten when you update to a new version of wordpress,
so it would be a good idea to save the folder of the default theme under a new name.
Thread Starter
jwadew
(@jwadew)
There it is!
Thanks so much alchymyth. Perfect.