// ============================================ // REMOVER COMENTÁRIOS DO HELLO ELEMENTOR // ============================================ // 1. Remover suporte a comentários de TODOS os tipos de post function hello_child_remove_comment_support() { remove_post_type_support( 'post', 'comments' ); remove_post_type_support( 'page', 'comments' ); } add_action( 'init', 'hello_child_remove_comment_support', 100 ); // 2. Ocultar comentários existentes function hello_child_disable_comments_post_types_support() { $post_types = get_post_types(); foreach ( $post_types as $post_type ) { if ( post_type_supports( $post_type, 'comments' ) ) { remove_post_type_support( $post_type, 'comments' ); remove_post_type_support( $post_type, 'trackbacks' ); } } } add_action( 'admin_init', 'hello_child_disable_comments_post_types_support' ); // 3. Fechar comentários existentes function hello_child_close_existing_comments( $open, $post_id ) { return false; } add_filter( 'comments_open', 'hello_child_close_existing_comments', 20, 2 ); add_filter( 'pings_open', 'hello_child_close_existing_comments', 20, 2 ); O Sol E Para Todos – Livros Digitais para Ler

Deixe um comentário

O seu endereço de e-mail não será publicado. Campos obrigatórios são marcados com *