Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

HHT Talker Cron Job

// Scheduled Action Hook
function hht_talker_updater( ) {
}
add_action( 'hht_talker_updater', 'hht_talker_updater' );

// Schedule Cron Job Event
function hht_talker_cron_activation() {
	if ( ! wp_next_scheduled( 'hht_talker_updater' ) ) {
		wp_schedule_event( current_time( 'timestamp' ), 'daily', 'hht_talker_updater' );
	}
}
add_action( 'wp', 'hht_talker_cron_activation' );