Enable comments on pages
<?php /** * Enable comments on pages */ add_action( 'wpcasa_post_content_after', 'page_comments_template' ); function page_comments_template() { comments_template( '', true ); }