JoeHana
3/27/2013 - 9:45 PM

Enable comments on pages

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