How can i customize the comment list

I am using wp_list_comments() function to draw the comment list.But,I want change many things in the form like class,styles, reply link and etc…

so please help me, How can i customize the comment listing function

Read More

Thanks

Related posts

Leave a Reply

5 comments

  1. The wp_list_comments() call accepts a callback argument, in which you can define the specifc comment-list markup that you want. I would suggest taking a look at how TwentyTen handles the wp_list_comments() callback.

  2. Comment is Easily Customaziable.
    for example: code for cancel the reply link

    <?php cancel_comment_reply_link(); ?>
    

    if you want custom the Text like Reply means Replace Text…

    <?php cancel_comment_reply_link(text); ?>
    

    Text to display as a link. If empty, it will return the default: ‘Click here to cancel reply.’it should be work.