This topic has 2 replies, 2 voices, and was last updated 9 years, 1 months ago ago by Eva Kemp
Is it possible to have ‘comments’ on pages, I’m able to select comments from the page edit screen, but it doesn’t show once the page is updated (no comment box below content).
Hello,
To add comments section for pages you need add this code in wp-content/themes/blanco/pages.php file (after line 29):
<?php // If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?>
before the code </div><!-- #content -->
Regards,
Eva Kemp.
You must be logged in to reply to this topic.Log in/Sign up