Du musst in Deinem Theme die Datei "Einzelner Artikel" (single.php) anpassen.
Normalerweise findest Du dort etwas wie:
PHP
<?php get_header(); ?>
<div id="container">
<div id="topcontent"></div>
<div id="singlecontent">
.
.
.
</div>
</div>
<?php get_footer(); ?>
und ersetze dieses durch
PHP
<?php get_header(); ?>
<div id="container" class="clearfix">
<?php get_sidebar(); ?>
<div id="topcontentdouble"></div>
<div id="content">
<div class="contentright">
.
.
.
</div> <!--Closes the contentright div-->
</div> <!-- Closes the content div-->
<div id="bottomcontentdouble">
</div>
</div> <!-- Closes the container div-->
<?php get_footer(); ?>
Alles anzeigen
Da ich bei mir schon das ein oder andere verändert habe, kann ich keine Garantien übernehmen ;)
Wenn Du Probleme dabei hast, poste einfach deine single.php, dann können wir die direkt anpassen.