Medyads adlı üyeden alıntı

Bu kodu daha önce de buldum fakat beceremedim malesef.

Ek Olarak: Bazı temalarda comments.phpsinde kendiliğinden var elinde öyle bir tema olan comments.php sini paylaşabilir mi? Belki functionsda da kodları olabilir bunun onu da paylaşırsa iyi olurdu.




"" yazısına




/**
*
* 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() ) : ?>


    wp_list_comments(array( 'avatar_size' => 50
    // see http://codex.wordpress.org/Function_Reference/wp_list_comments
    // 'login_text' => 'Login to reply',
    // 'callback' => null,
    // 'end-callback' => null,
    // 'type' => 'all',
    // 'avatar_size' => 32,
    // 'reverse_top_level' => null,
    // 'reverse_children' =>
    ));
    ?>


if ( ! comments_open() ) : // There are comments but comments are now closed
echo"

Yoruma kapalıdır.

";
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"

Yoruma kapalıdır.

";
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.)