mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://wordpress.org/plugins/enable-jquery-migrate-helper/ https://wordpress.org/support/topic/turn-off-weekly-email-notifications/
4 lines
201 B
Text
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);
|