mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
6 lines
219 B
Text
6 lines
219 B
Text
add_action( 'init', function() {
|
|
$timestamp = wp_next_scheduled( 'fibosearch_rebuild_index_cron' );
|
|
if ( $timestamp ) {
|
|
wp_unschedule_event( $timestamp, 'fibosearch_rebuild_index_cron' );
|
|
}
|
|
}, 30 );
|