Ekleyim

<?php


// Bu satırları silmeyin
    if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
        die ('Lütfen bu sayfayı direkt yüklemeyin. Teşekkürler!');

    if ( post_password_required() ) { ?>
        <p class="nocomments">Bu yazı parola korumalı. Yorumları görmek için parolayı girin.</p>
    <?php
        return;
    }
?>

<!-- Buradan sonrasını düzenleyebilirsiniz. -->

<?php if ( have_comments() ) : ?>
    <h3 id="comments">“<?php the_title(); ?>” için <?php comments_number('Yorum Yok', '1 Yorum', '% Yorum' );?></h3>

    <div class="navigations">
        <h3><div class="alignlefts"><?php previous_comments_link() ?></div></h3>
        <h3><div class="alignrights"><?php next_comments_link() ?></div></h3>
    </div>

    <ol class="commentlist">
    <?php wp_list_comments(); ?>
    </ol>
    
    <div class="navigation">
        <h3><div class="alignlefts"><?php previous_comments_link() ?></div></h3>
        <h3><div class="alignrights"><?php next_comments_link() ?></div></h3>
    </div>
    
 <?php else : // Hiç yorum yoksa gösterilecek bölüm ?>

    <?php if ( comments_open() ) : ?>
        <!-- Yorum yapma açıksa ama henüz yorum yoksa. -->

     <?php else : // Yorum yapma kapalı ?>
        <!-- Eğer yorum yapma kapalıysa. -->
        <p class="nocomments">Yorum yapma kapalı.</p>

    <?php endif; ?>
<?php endif; ?>


<?php if ( comments_open() ) : ?>

<div id="respond">

<h3><?php comment_form_title( 'Yorum yapın', '%s için yorum yapın' ); ?></h3>

<div class="cancel-comment-reply">
    <small><?php cancel_comment_reply_link(); ?></small>
</div>

<?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?>
<p>Yorum yapabilmek için <a href="<?php echo wp_login_url( get_permalink() ); ?>">giriş</a> yapmalısınız.</p>
<?php else : ?>

<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">

<?php if ( is_user_logged_in() ) : ?>

<p><a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php">
<?php echo $user_identity; ?></a> olarak giriş yapılmış. 
<a href="<?php echo wp_logout_url(get_permalink()); ?>" title="Bu hesaptan çıkış yapın">Çıkış &raquo;</a></p>

<?php else : ?>

<p><input type="text" name="author" id="author" value="<?php echo esc_attr($comment_author); ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="author"><small>İsim <?php if ($req) echo "(gerekli)"; ?></small></label></p>

<p><input type="text" name="email" id="email" value="<?php echo esc_attr($comment_author_email); ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="email"><small>E-posta (yayımlanmayacak) <?php if ($req) echo "(gerekli)"; ?></small></label></p>

<p><input type="text" name="url" id="url" value="<?php echo esc_attr($comment_author_url); ?>" size="22" tabindex="3" />
<label for="url"><small>Site</small></label></p>

<?php endif; ?>

<!--<p><small><strong>XHTML:</strong> Şu etiketleri kullanabilirsiniz: <code><?php echo allowed_tags(); ?></code></small></p>-->

<p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>

<p><input name="submit" type="submit" id="submit" tabindex="5" value="Gönder" />
<?php comment_id_fields(); ?>
</p>
<?php do_action('comment_form', $post->ID); ?>

</form>

<?php endif; // Eğer üyelik gerekliyse ve giriş yapılmamışsa ?>
</div>

<?php endif;  ?>