sidebar.php'yi açın,

Alıntı
<div id="sidebar" role="complementary">
benzeri(sidebar tanımlı) kodun altına,

Alıntı
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
bunu ekleyin. sayfanın altındaki son div'den önce de

Alıntı
<?php endif; ?>
bunu ekleyin.

funcstions.php dosyasının en altına da

Alıntı
<?php
if ( function_exists('register_sidebar') )
register_sidebar(array(
'name' => 'Sidebar Right',
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h2>',
'after_title' => '</h2>',
));
?>
kodunu ekleyin. tema widgetlı olur.

tabii widget kullanımı büyük ihtimalle css sorunları çıkaracaktır.

taglar içinde single.php dosyasını açın, content bölümünden sonra

Alıntı
<?php the_tags( '<p>Tags: ', ', ', '</p>'); ?>
kodunu ekleyin.