I found this great tip How To Display Sidebar in Single Post in WordPress 1.5 / 2.0 Default Kubrick Theme.
The only problem is that the code that you should add is not properly shown in the post. He just copied the xml code verbatim in the post without escaping it and the browser doesn’t display it properly. So I’m reproducing it here for your convenience.
- Go to the theme editor. Appearance ⇒ Editor
- Click on Theme Files ⇒ Templates ⇒ Single post (single.php)
- Change the class of the first div to be "narrowcolumn" instead of "widecolumn" That is, replace:
- Add a call to get_sidebar() at the end just before get_footer() That is, add the following line:
<div id="content" class="widecolumn">
</pre>
with
<pre lang="xml">
<div id="content" class="narrowcolumn">
<?php get_sidebar(); ?>
before this line:
<?php get_footer(); ?>