Code-Snippets-Functions/Execute a function on a child site/Ajax Search for WooCommerce/unschedule-recurring-indexing.txt

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 );