Next Execution says "Next Page Refresh" All The Time
-
Alrighty, I’ve had this issue recently where the Next Execution will say “Next Page Refresh” but never seems to fire. If I install
WP Crontrol
tool it seems to show the correct nextrun timestamp.Crony The Cronjob Manager
also shows the correct nextrun timestamp. Below I’ll run through the process of what I’m doing:I’ve created a schedule which runs every hour:
function custom_theme_init() { if( ! wp_next_scheduled( 'cust_supplier_cron' ) ) { wp_schedule_event( time(), 'hourly', 'cust_supplier_cron' ); } } add_action( 'init', 'custom_theme_init' );
It does run every hour no matter when this plugin says it will run but it’s just bothersome that it keeps telling me “Next Page Refresh” even if I click the button to run it right now. I’m not sure if it’s a conflict with these two plugins but it’s the only two I have installed on the default 2016 theme.
- The topic ‘Next Execution says "Next Page Refresh" All The Time’ is closed to new replies.