bu kodları sidebar.php de uygun bir yere koyarsın.
temana gör düzenlersin:
<?php if ( function_exists('wp_tag_cloud') ) : ?>
<li>
<h2>Etiketler</h2>
<ul>
<?php wp_tag_cloud('smallest=8&largest=22'); ?>
</ul>
</li>
<?php endif; ?>veya
<li><h2>Etiketler</h2>
<ul>
<?php wp_tag_cloud(''); ?>
</ul>
</li>bunlar yan tarafta etiketleri listeler.bir de index.php veya single.php dosyasına şu kodu koyarak etiketleri gösterebilirsin:
<?php the_tags('Etiketler: ', ', ', '<br />'); ?>