mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
https://wordpress.org/support/topic/disable-the-email-notifications-for-weekly-jquery-migrate-status-update/
4 lines
200 B
Text
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);
|