did_action

函数
did_action ( $hook_name )
参数
  • (string) $hook_name The name of the action hook.
    Required:
返回值
  • (int) The number of times the action hook has been fired.
定义位置
相关方法
add_actiondo_actiondoing_actionhas_actionadd_option
引入
2.1.0
弃用
-

did_action是WordPress的一个函数,用来确定某个动作是否已经被执行: 这个函数把一个动作的名称作为参数,并返回一个布尔值,表示该动作是否已经被执行。

检索一个动作在当前请求中被触发的次数。

function did_action( $hook_name ) {
	global $wp_actions;

	if ( ! isset( $wp_actions[ $hook_name ] ) ) {
		return 0;
	}

	return $wp_actions[ $hook_name ];
}

常见问题

FAQs
查看更多 >