Skip to content

Instantly share code, notes, and snippets.

@jbma
Created November 14, 2015 13:18
Show Gist options
  • Save jbma/0226af9b32e0f1b340cd to your computer and use it in GitHub Desktop.
Save jbma/0226af9b32e0f1b340cd to your computer and use it in GitHub Desktop.
<?php
if ( ! wp_next_scheduled( 'clear_home_page_hourly' ) ) {
wp_schedule_event( time(), 'hourly', 'clear_home_page_hourly' );
}
add_action( 'clear_home_page_hourly', 'clear_home_page' );
function clear_home_page() {
rocket_clean_home();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment