wp_cron
函数
wp_cron ( No parameters )
- 返回值
-
- (bool|int|void) On success an integer indicating number of events spawned (0 indicates no events needed to be spawned), false if spawning fails for one or more events or void if the function registered _wp_cron() to run on the action.
- 定义位置
-
-
wp-includes/cron.php
, line 945
-
wp-includes/cron.php
- 引入
- 2.1.0
- 弃用
- –
Register _wp_cron() to run on the {@see ‘wp_loaded’} action.
If the {@see ‘wp_loaded’} action has already fired, this function calls
_wp_cron() directly.
Warning: This function may return Boolean FALSE, but may also return a non-Boolean
value which evaluates to FALSE. For information about casting to booleans see the
{@link PHP documentation}. Use
the `===` operator for testing the return value of this function.
function wp_cron() { if ( did_action( 'wp_loaded' ) ) { return _wp_cron(); } add_action( 'wp_loaded', '_wp_cron', 20 ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。