apply_filters_deprecated()

最后更新于:2021-11-25 19:48:51

apply_filters_deprecated( string$hook_name, array$args, string$version, string$replacement=”, string$message=”)

Fires functions attached to a deprecated filter hook.

参数

$hook_name

(string) (Required) The name of the filter hook.

$args

(array) (Required) Array of additional function arguments to be passed to apply_filters().

$version

(string) (Required) The version of GeChiUI that deprecated the hook.

$replacement

(string) (Optional) The hook that should have been used.

Default value: ”

$message

(string) (Optional) A message regarding the change.

Default value: ”

源文件

文件: gc-includes/plugin.php

function apply_filters_deprecated( $hook_name, $args, $version, $replacement = '', $message = '' ) {
	if ( ! has_filter( $hook_name ) ) {
		return $args[0];
	}

	_deprecated_hook( $hook_name, $version, $replacement, $message );

	return apply_filters_ref_array( $hook_name, $args );
}