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

Removes a list of options from the options whitelist.


Description Description


Parameters Parameters

$del_options

(array) (Required)

$options

(string|array) (Optional)

Default value: ''


Top ↑

Return Return

(array)


Top ↑

Source Source

File: wp-admin/includes/plugin.php

function remove_option_whitelist( $del_options, $options = '' ) {
	if ( $options == '' ) {
		global $whitelist_options;
	} else {
		$whitelist_options = $options;
	}

	foreach ( $del_options as $page => $keys ) {
		foreach ( $keys as $key ) {
			if ( isset( $whitelist_options[ $page ] ) && is_array( $whitelist_options[ $page ] ) ) {
				$pos = array_search( $key, $whitelist_options[ $page ] );
				if ( $pos !== false ) {
					unset( $whitelist_options[ $page ][ $pos ] );
				}
			}
		}
	}

	return $whitelist_options;
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.7.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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