i'm making a plugin where i want the comments in a single post page not to be printed at all. I need to query the database myself and print my own html with the results.
How can I make Wordpress to not print the comments, without disabling them?
Thank you
EDIT: as a suggestion, i am using:
apply_filters('comments_template', array($this,'comments_template'), 10, 1);
function comments_template($template){
$template = '';
return $template;
}
nothing happens, what am i doing wrong?