_wp_register_meta_args_whitelist( array $args, array $default_args ): array

This function has been deprecated. Use _wp_register_meta_args_allowed_list() instead. Please consider writing more inclusive code.

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Filters out register_meta() args based on an allowed list.

Description

register_meta() args may change over time, so requiring the allowed list to be explicitly turned off is a warranty seal of sorts.

Parameters

$argsarrayrequired
Arguments from register_meta().
$default_argsarrayrequired
Default arguments for register_meta().

Return

array Filtered arguments.

Source

function _wp_register_meta_args_whitelist( $args, $default_args ) {
	_deprecated_function( __FUNCTION__, '5.5.0', '_wp_register_meta_args_allowed_list()' );

	return _wp_register_meta_args_allowed_list( $args, $default_args );
}

Changelog

VersionDescription
5.5.0Use _wp_register_meta_args_allowed_list() instead.
Please consider writing more inclusive code.
4.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.