Commentsın üzerine yazdığındada çıkmaz botla çekildiğinde ve çıkmıyorda.

<?php the_content('Read On &raquo;'); ?> bunun altınada üstünede koydum o zamanda çıkmadı. Reklam eklentileri php kod çalıştırmıyor zaten. İmkansız birşey mi açık kaynak kodlu bir sistemde bi php kod eklemek konu içerisine

<?php get_header(); ?>

<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>

<div class="post-container" id="post-<?php the_ID(); ?>">
	<div class="post-content">
		<div class="post-image-single">
			<a href="<?php the_permalink() ?>"><?php image_attachment('image', 144, 144); ?></a>
		</div>
		<div class="post-header-single">
			<h1><?php the_title(); ?></h1>
		</div>
		<?php the_content('Read On &raquo;'); ?>
		<?php link_pages('<p><span class="bold">Sayfalar:</span> ', '</p>', 'number'); ?>
	</div>
	<div class="stitches"></div>
	<div class="post-meta-single">
		<?php edit_post_link('<span class="bold">Admin: </span>Yazıyı düzenle.<br/>', ''); ?>
		<span class="bold">Tarih <?php the_time('F j, Y'); ?>. yazar</span> <a href="<?php the_author_url(); ?>"><?php the_author();?></a><span class="bold">.</span><br/>
		<span class="bold">Kategori</span> <?php the_category(', ') ?><span class="bold">.</span><br/>
		<span class="bold">Etiketler</span> <?php the_tags(__(''), ', ', ''); ?><span class="bold">.</span><br/>
		<span class="bold">Bu yazıyı beğendin mi?</span>  <a href="http://twitter.com/home?status=Currently reading <?php the_permalink(); ?>" title="Tweetle!" target="_blank">Twitter'da Paylaş</a>.  
	</div>
</div>

<?php comments_template();?>

<?php endwhile; ?>
	
<div class="below-post">
	<span class="go-left">
		<span class="bold">Önceki Yazılar</span><br/>
		<?php previous_post_link('&laquo; %link') ?>
	</span>
	<span class="go-right align-right">
		<span class="bold">Sonraki Yazılar</span><br/>
		<?php next_post_link(' %link &raquo;') ?>
	</span>
	<div class="clear"></div>
</div>
	
<?php else : ?>
	
<h2 class="center">Bulunamadı</h2>
<p class="center">Üzgünüm, aradığınız şey burada değil.</p>
		
<?php endif; ?>
	
</div> 

 <!--End of Single.php-->

<?php get_sidebar(); ?>

<?php get_footer(); ?>