Home / Disable / Remove comments article only
Duplicate Snippet

Embed Snippet on Your Site

Remove comments article only

Remove comments article only

Code Preview
php
<?php
// Disabilita i commenti solo sugli articoli (post), non sui prodotti (product)
add_action('init', function() {
    // Rimuovi il supporto ai commenti dagli articoli
    remove_post_type_support('post', 'comments');
}, 20);
// Nasconde il modulo commenti nel frontend per sicurezza (fallback)
add_filter('comments_open', function($open, $post_id) {
    $post_type = get_post_type($post_id);
    if ($post_type === 'post') {
        return false;
    }
    return $open;
}, 10, 2);
// Rimuove il link ai commenti negli articoli dalla barra di amministrazione
add_action('admin_menu', function() {
    remove_meta_box('commentsdiv', 'post', 'normal');
});

Comments

Add a Comment