mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
9 lines
346 B
Text
9 lines
346 B
Text
add_action( 'init', function() {
|
|
add_action( 'fibosearch_rebuild_index_cron', 'fibosearch_rebuild_index' );
|
|
if (! wp_next_scheduled ( 'fibosearch_rebuild_index_cron' )) {
|
|
wp_schedule_event( time(), 'hourly', 'fibosearch_rebuild_index_cron' );
|
|
}
|
|
}, 20 );
|
|
function fibosearch_rebuild_index() {
|
|
do_action( 'dgwt/wcas/indexer/build' );
|
|
}
|