WordPress有像Timer Hook这样的东西吗?

时间:2016-07-13 作者:KyL

是否有一些计时器挂钩来触发这样的事件?

add_action("one_min_timer", "my_handler");
function my_handler() {
   //checking something every 1 min
}

1 个回复
SO网友:Tammy Shipps

您可以使用WordPress中的本机PHP sleep()函数以秒为单位计算计时器,或者使用usleep()以微秒为单位计算计时器:

http://php.net/manual/en/function.sleep.php

http://php.net/manual/en/function.usleep.php

相关推荐

POST_ROW_ACTIONS不适用于分层帖子类型

我正在开发一个插件,其中注册了一个自定义帖子类型(CPT),我需要向该特定帖子类型添加自定义行操作。但无法将以下代码连接到post_row_actions 工作:function ttest_copy_button( $actions, $post ) { // var_dump($actions); if( \'ttest\' === $post->post_type ) { // pass nonce to check and ve