WordPress › Support » Display full comments, not just a link?http://wordpress.org/support/topic/188149
Commentaires en homepage sur wordpress :
1.Open /wp-includes/comment-template.php
2.Find the "function comments_template( $file = '/comments.php' ){"
3.Inside the function you will see :
if ( ! (is_single() || is_page() || $withcomments) )
return;
Change this to
if ( ! (is_single() || is_page() || $withcomments) )
//return;
4.Open /wp-content/themes/yourtheme/index.php
add "" inside post loop
"while (have_posts()) : the_post(); "