Code-Snippets-Functions/Execute a function on a child site/WordPress/disable-jquery-migrate-helper-notification-being-sent.txt

4 lines
201 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);