cyys adlı üyeden alıntı: mesajı görüntüle
	

<article> 
<hgroup> 
<h1><?php the_title();?></h1>
<h2><?php the_category( ' > ', 'multiple', $post->ID); echo ' > '; the_title();> 
</h2>
<p><?php the_content();?></p></hgroup>
<p>Etiketler: <?php the_tags(''); ?></p>
</article>
Wordpress için bu şekilde bir sitemde kullandım. İnş. faydasını görürüz
yukarıda yanlış yazmışım düzelttim. hgroup tagını paragraftan önce eklemiştim. sizin doğru kod şu şekilde. ayrıca çok önemli anahtar kelimeleri <i> tagı içerisine alın bence.
	

<article> 
<hgroup> 
<h1><?php the_title();?></h1>
<h2><?php the_category( ' > ', 'multiple', $post->ID); echo ' > '; the_title();> 
</h2>
</hgroup>
<p><?php the_content();?></p>
<p>Etiketler: <?php the_tags(''); ?></p>
</article>