do_action_ref_array

函数
do_action_ref_array ( $hook_name, $args )
参数
  • (string) $hook_name The name of the action to be executed.
    Required:
  • (array) $args The arguments supplied to the functions hooked to `$hook_name`.
    Required:
相关
  • do_action()
定义位置
相关方法
do_action_deprecateddo_action_get_cron_array_set_cron_arraydo_core_upgrade
引入
2.1.0
弃用
-

do_action_ref_array: 这个函数用来执行一个带有参数数组的动作钩子。它接受一个钩子的名字和一个参数数组来传递给钩子。

调用已经添加到动作钩子上的回调函数,在一个数组中指定参数。

function do_action_ref_array( $hook_name, $args ) {
	global $wp_filter, $wp_actions, $wp_current_filter;

	if ( ! isset( $wp_actions[ $hook_name ] ) ) {
		$wp_actions[ $hook_name ] = 1;
	} else {
		++$wp_actions[ $hook_name ];
	}

	// Do 'all' actions first.
	if ( isset( $wp_filter['all'] ) ) {
		$wp_current_filter[] = $hook_name;
		$all_args            = func_get_args(); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection
		_wp_call_all_hook( $all_args );
	}

	if ( ! isset( $wp_filter[ $hook_name ] ) ) {
		if ( isset( $wp_filter['all'] ) ) {
			array_pop( $wp_current_filter );
		}

		return;
	}

	if ( ! isset( $wp_filter['all'] ) ) {
		$wp_current_filter[] = $hook_name;
	}

	$wp_filter[ $hook_name ]->do_action( $args );

	array_pop( $wp_current_filter );
}

常见问题

FAQs
查看更多 >