remove_option_whitelist()

最后更新于:2021-11-27 21:43:14

remove_option_whitelist( array$del_options, string|array$options=”)

Removes a list of options from the allowed options list.

参数

$del_options

(array) (Required)

$options

(string|array) (Optional)

Default value: ”

响应

(array)

源文件

文件: gc-includes/deprecated.php

function remove_option_whitelist( $del_options, $options = '' ) {
	_deprecated_function( __FUNCTION__, '5.5.0', 'remove_allowed_options()' );

	return remove_allowed_options( $del_options, $options );
}