답변:
워드 프레스는 DOING_CRON
cron 작업을하고 있는지 아닌지를 알려주 는 상수 를 가지고 있습니다. wp-cron.php
파일에 정의되어 있습니다.
따라서 코드에서이 상수를 확인할 수 있습니다.
if ( defined( 'DOING_CRON' ) )
{
// Do something
}
wp_doing_cron()
대신 사용할 수 있습니다.
질문 # 18017 에 대해 작성한 »Cron API inspector«를 살펴보십시오 . 플러그인은 -hook / 페이지 끝에 표시되는 테이블을 작성합니다 .shutdown
이 _get_cron_array()
기능을 사용하여 등록 및 예약 된 모든 작업을 검색합니다. 또 다른 유용한 기능은 wp_get_schedules()
입니다. 세 번째 방법은 호출하여 기본 데이터를 _get_cron_array()
직접 호출하는 get_option( 'cron' );
것입니다. 여전히 WP 코어의 기본 API 함수를 사용하는 것이 좋습니다.
현재 Cron Job 내부에 있는지 확인하려면을 확인하십시오 defined( 'DOING_CRON' ) AND DOING_CRON
.
나는 공부를 공부하지는 않지만 (나는 열광적 인 사람이지만) 이벤트에 add_action을 추가 할 수 있다고 생각합니다.
이력서 일뿐입니다 ...
//to the event
if(your_condition)
{
add_action('original_event_to_hook', 'your_scheduled');
}
function your_scheduled()
{
//create a param here
//And shedule your function with arg
wp_schedule_event(time(), 'hourly', 'your_function', array('param_1' => value));
}
function your_function($args){
$verification = $args['param_1'];
if($verification)
{
//OK
//Eventually delete this schedule with this specific arg
}
}
이 인수가있는 cron "your_function"의 목록을 검색하려면
//Get a filtered list of cron hooks
function kw_filter_crons_hooks($hooks = false, $args = false)
{
$crons = get_option('cron');
if (!$crons)
{
$crons[0] = NULL;
}
$filter = array();
$cronlist = array();
$schedule = array();
foreach($crons as $timestamp => $cron)
{
//@param $hooks = string 'schedule'
//@param $args = false
//Return an array of cron task sheduled
$schedule[] = $cron;
if(!$schedule && $hooks == 'schedule' && $args == false)
{
$schedule[0] = NULL;
}
foreach($hooks as $hook)
{
if(isset($cron[$hook]))
{
//@param $hooks = array($hook);
//@param $args = false
//Return an array of cron task sheduled
$cronlist[] = $cron;
if(!$cronlist && is_array($hooks) && $args == false)
{
$cronlist[0] = NULL;
}
if(!empty($args))
{
foreach($cronlist as $key => $value)
{
foreach($value as $k => $v)
{
foreach($v as $x => $y)
{
foreach($args as $arg => $val)
{
if ($y['args'][$arg] == $val)
{
//@param $hooks = array($hook);
//@param $args = array($arg);
//Return an array of cron task specified filtered by arg
$filter[$x] = $y;
if(!$filter && is_array($hooks) && is_array($args))
{
$filter[0] = NULL;
}
}
}
}
}
}
}
}
}
}
if(is_array($hooks) && $args === false && $cronlist)
{
return $cronlist;
}
else if(is_array($hooks) && is_array($args) && $filter)
{
return $filter;
}
else if($hooks === 'schedule' && $args === false && $schedule)
{
return $schedule;
}
else if($hooks === false && $args === false && $crons)
{
return $crons;
}
else
{
return false;
}
}
//Usage
$cron_filtered = kw_filter_crons_hooks(array('your_function'), array('param_1' => value));
var_dump($cron_filtered);