apply_filters_deprecated()WP 4.6.0

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' );
Хуки из функции

Возвращает

Разное. The filtered value after all hooked functions are applied to it.

Использование

apply_filters_deprecated( $hook_name, $args, $version, $replacement, $message );
$hook_name(строка) (обязательный)
The name of the filter hook.
$args(массив) (обязательный)
Array of additional function arguments to be passed to apply_filters().
$version(строка) (обязательный)
The version of WordPress that deprecated the hook.
$replacement(строка)
The hook that should have been used.
По умолчанию: ''
$message(строка)
A message regarding the change.
По умолчанию: ''

Заметки

Список изменений

С версии 4.6.0 Введена.

Код apply_filters_deprecated() WP 6.5.2

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 );
}