Onur89TR adlı üyeden alıntı
/**
 *
 *  Comments themplate - Adapted Version of Kubrick's
 *
 *  There are 2 distinct sections after the protection area ::
 *  Display Comments is a loop surrounding the wp_list_comments() function
 *  The Form/Login section uses comment_form() to do everything
 *  ( Finally the RSS link is at the end of the page )
 *
 *  */
 
// ##########  Do not delete these lines
if (isset($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])){
    die ('Lütfen bu sayfayı direkt olarak yüklemeyin. Teşekkürler!'); }
if ( post_password_required() ) { ?>
    
    return; }
// ##########  End do not delete section
 
// Display Comments Section
if ( have_comments() ) : ?>
        
    
        
        if ( ! comments_open() ) : // There are comments but comments are now closed
        echo"";
    endif;
 
else : // I.E. There are no Comments
    if ( comments_open() ) : // Comments are open, but there are none yet
        // echo"Be the first to write a comment.
";
    else : // comments are closed
        echo"";
    endif;
endif;
 
// Display Form/Login info Section
// the comment_form() function handles this and can be used without any paramaters simply as "comment_form()"
comment_form(array(
  // see codex http://codex.wordpress.org/Function_Reference/comment_form for default values
  // tutorial here http://blogaliving.com/wordpress-adding-comment_form-theme/
  'comment_field' => '',
  'label_submit' => 'Yorumu Gönder',
  'comment_notes_after' => ''
  )); 
?>
Şunu dener misin? (Bazı yerler değişmesi veya stil verilmesi gerekebilir.)
Aynen hocam aradığım kod tam olarak da bu teşekkürler.
Ek Olarak: Ne kadar uğraştıysam cevapla kısmını şu koddan ayıramadım kendi kodlarımın içine entegre etmek amacımdı ama bu kodları düzenlemek grekecek sanırım.