JoeHana
8/1/2013 - 11:54 PM

Remove Comments from Posts (FrameShift)

Remove Comments from Posts (FrameShift)

<?php

/**
 * Remove Comments from Posts
 */
 
add_action('init', 'custom_init');
 
function custom_init() {
    remove_action( 'frameshift_post_content_after', 'frameshift_get_comments_template', 100 ); 
}