JoeHana
11/5/2013 - 1:50 AM

Remove Comments from Posts

Remove Comments from Posts

<?php

/**
 * Remove Comments from Posts
 */
 
add_action('init', 'custom_init');

function custom_init() {
	remove_action( 'wpsight_post_content_after', 'wpsight_get_comments_template', 100 ); 
}