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
<?php | |
// add filter to allow for new weekly schedule | |
add_filter( 'cron_schedules', 'rkv_weekly_cron' ); | |
function rkv_weekly_cron( $schedules ) { | |
// Adds once weekly to the existing schedules. | |
$schedules['weekly'] = array( | |
'interval' => 604800, | |
'display' => __( 'Once Weekly' ) | |
); |