JoeHana
1/7/2014 - 1:21 PM

Allow comments on pages

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 );
 
}