add_action(\'init\', \'property_listing_check_status\');
function property_listing_check_status() {
if (! wp_next_scheduled ( \'daily_check_property_status\' )) {
wp_schedule_event( time() , \'hourly\', \'daily_check_property_status\');
}
add_action(\'daily_check_property_status\', \'do_this_hourly\');
}
function do_this_hourly() {
print_r(\'vivek\');
}
I tried this code but i need to change time interval how to change this