Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

test

test1

// Scheduled Action Hook
function cjob( $param1 = 'a', $param2 = 'b', $param3 = 'c' ) {
}
add_action( 'cjob', 'cjob' );

// Schedule Cron Job Event
function custom_cron_job() {
	if ( ! wp_next_scheduled( 'cjob' ) ) {
		wp_schedule_event( current_time( 'timestamp' ), 'hourly', 'cjob', array( 'a','b','c' ) );
	}
}
add_action( 'wp', 'custom_cron_job' );