/*
Theme Name: Essentials Child
Theme URI: https://essentials.pixfort.com/
Author: PixFort
Template: essentials
Author URI: http://themeforest.net/user/pixfort
Description: Essentials child theme
Version: 1.0.2
License: Envato Marketplaces Split Licence
License URI: https://themeforest.net/licenses/standard
Text Domain: essentials-child
Tags: header-builder, footer-builder, divider-builder, popup-builder, premium-design, translation-ready

*/


function disable_comment_moderation_for_specific_page($approved, $commentdata) {
    // ID de la página específica
    $page_id = 47382; // Cambia este valor por el ID de tu página

    if (isset($commentdata['comment_post_ID']) && $commentdata['comment_post_ID'] == $page_id) {
        return 1; // Aprobar automáticamente los comentarios
    }

    return $approved;
}
add_filter('pre_comment_approved', 'disable_comment_moderation_for_specific_page', 10, 2);