Created
February 5, 2023 21:53
-
-
Save NigelRodgers/ab19fc5cc45cd8f5b9b0f165dbf072a3 to your computer and use it in GitHub Desktop.
Create missing rank_math/analytics/data_fetch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function reschedule_analytics_fetch_nr() { | |
if( ! get_option('run_create_vip_order_once') ) { | |
as_schedule_recurring_action( strtotime( 'tomorrow' ), 3*DAY_IN_SECONDS, 'rank_math/analytics/data_fetch', array(), "rank-math" ); | |
update_option( 'run_create_vip_order_once', true ); | |
} | |
} | |
add_action( 'init', 'reschedule_analytics_fetch_nr' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
delete_option( 'reschedule_analytics_fetch_nr' );