首页 WordPress函数大全 apply_filters_deprecated()

apply_filters_deprecated()

2020-05-01 / 4089阅 / 悠然

如何你看完本文还不知道如何使用该函数,可以联系我定制视频教程,50元/个函数,学不会全额退款

apply_filters_deprecated( string $tag, array $args, string $version, string $replacement = null, string $message = null )

Fires functions attached to a deprecated filter hook.

描述

When a filter hook is deprecated, the apply_filters() call is replaced with apply_filters_deprecated(), which triggers a deprecation notice and then fires the original filter hook.

Note: the value and extra arguments passed to the original apply_filters() call must be passed here to $args as an array. For example:

// Old filter.
return apply_filters( 'wpdocs_filter', $value, $extra_arg );

// Deprecated.
return apply_filters_deprecated( 'wpdocs_filter', array( $value, $extra_arg ), '4.9.0', 'wpdocs_new_filter' ); 

See also See also

  • _deprecated_hook()

Top ↑

参数

$tag

(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 WordPress that deprecated the hook.

$replacement

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

Default value: null

$message

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

Default value: null

大家谈论
    我的见解