Code-Snippets-Functions/Execute a function on a child site/Enable jQuery Migrate Helper/disable-the-email-notifications-for-weekly-jquery-migrate-status-update.txt

4 lines
200 B
Text

add_action('init', function() {
$timestamp = wp_next_scheduled( 'enable_jquery_migrate_helper_notification' );
wp_unschedule_event($timestamp, 'enable_jquery_migrate_helper_notification');
}, 100);