7369 shaares
255 private links
255 private links
51 results
tagged
templates
good clean blank template
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(); "