2016-12-15 140 views

回答

1

你可以做以下
首先,你需要2M的間隔添加到日程安排

add_filter('cron_schedules', 'my_schedules'); 

function my_schedules($schedules) 
{ 
    $schedules['once_every_2m'] = array('interval' => 120, 'display' => 'Once every 2 minutes'); 
    return $schedules; 
} 

然後您使用添加你的工作新創建的時間間隔

if (!wp_next_scheduled('name_of_your_job')) 
{ 
    wp_schedule_event(1481799444, 'once_every_2m', 'name_of_your_job'); 
} 
add_action('name_of_your_job', 'function_that_should_be_executed'); 

function function_that_should_be_executed() 
{ 
    //do what you need to do 
} 

另外,請記住,由於WP cron的工作原理,它可能在時間上是準確的。 Docs

+0

我如何添加一個網址到它..如:HTTP:// mysitecom/dothisjob/every2minutes – Melvin

+1

@Melvin你可以做任何你需要的功能'function_that_should_be_executed' –

+0

內你能不能給我一個示例代碼,請。我是空白的 – Melvin