Allow comments on pages
<?php /** * Allow comments on pages */ add_action( 'wpsight_post_content_after', 'wpc31_post_content_after', 9 ); function wpc31_post_content_after() { comments_template( '', true ); }