Buonasera,
qualcuno saprebbe indicarmi un plugin o del codice php per eliminare tutti i commenti html nelle pagina front-end di wordpress?

Ho trovato questo in rete ma non sembra funzionare:
Codice PHP:
function callback($buffer) {
$buffer = preg_replace('/<!--(.|s)*?-->/', '', $buffer);
return
$buffer;
}
function
buffer_start() {
ob_start("callback");
}
function
buffer_end() {
ob_end_flush();
}
add_action('get_header', 'buffer_start');
add_action('wp_footer', 'buffer_end');