Skip to content

Instantly share code, notes, and snippets.

View mattonomics's full-sized avatar

Matt Gross mattonomics

  • Bonsai.io (OMC)
  • Lexington, KY
View GitHub Profile
<?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' )
);