temanızın single.php dosyasına aşağıdaki kodları ekleyin

	<div class="relatedposts">
<h3>İlgili Yazılar</h3>
<ul>
<?php foreach ( $posts as $post ) : ?>
<li><a href="<?php the_permalink() ?>" title="<?php echo trim(str_replace("\n"," ",preg_replace('#<[^>]*?>#si','',get_the_excerpt()))) ?>"><?php if ( get_the_title() ){ the_title(); }else{ echo "Untitled"; } ?></a> (<?php the_time('M d, Y') ?>)</li>
<?php endforeach // $posts as $post ?>
</ul>
		</div>

style.css dosyasınada aşağıdaki kodları ekleyin

Alıntı
.relatedposts a{
text-decoration: underline;
}
.relatedposts h3{
padding-left: 7px;
text-decoration: underline;
}