You appear to be a bot. Output may be restricted
Description
Display the "Scheduled republish" pageThis page:
- displays the settings for "scheduled republish"
- displays the settings for category reschedule
- displays the settings for tag reschedule
- runs the cron process if manually requested
- displays any posts that should have been rescheduled today
- displays any posts that will get rescheduled tomorrow
- displays posts that are published/scheduled for the future date
- displays CRON information and test buttons
Usage
oik_batchmove_lazy_scheduled_page();
Parameters
Returns
voidSource
File name: oik-batchmove/admin/oik-batchmove-cron.phpLines:
1 to 14 of 14
function oik_batchmove_lazy_scheduled_page() { oik_menu_header( "Scheduled republish", "w90pc" ); oik_box( null, null, "Settings", "oik_batchmove_settings" ); oik_box( null, null, "Reschedule oldest in category", "oik_batchmove_reschedule_oldest" ); oik_box( null, null, "Reschedule oldest with tag", "oik_batchmove_reschedule_oldest_tags" ); oik_batchmove_run_cron_maybe(); oik_box( null, null, "Reposts for today", "oik_batchmove_repost_today" ); oik_box( null, null, "Reposts for tomorrow", "oik_batchmove_reposts" ); oik_box( null, null, "Rescheduled posts", "oik_batchmove_rescheduled" ); oik_box( null, null, "CRON", "oik_batchmove_cron" ); oik_menu_footer(); bw_flush(); }View on GitHub View on Trac