wpseek.com
A WordPress-centric search engine for devs and theme authors



add_allowed_options › WordPress Function

Since5.5.0
Deprecatedn/a
add_allowed_options ( $new_options, $options = '' )
Parameters: (2)
  • (array) $new_options
    Required: Yes
  • (string|array) $options
    Required: No
    Default: (empty)
Returns:
  • (array)
Defined at:
Codex:

Adds an array of options to the list of allowed options.



Source

function add_allowed_options( $new_options, $options = '' ) {
	if ( '' === $options ) {
		global $allowed_options;
	} else {
		$allowed_options = $options;
	}

	foreach ( $new_options as $page => $keys ) {
		foreach ( $keys as $key ) {
			if ( ! isset( $allowed_options[ $page ] ) || ! is_array( $allowed_options[ $page ] ) ) {
				$allowed_options[ $page ]   = array();
				$allowed_options[ $page ][] = $key;
			} else {
				$pos = array_search( $key, $allowed_options[ $page ], true );
				if ( false === $pos ) {
					$allowed_options[ $page ][] = $key;
				}
			}
		}
	}

	return $allowed_options;
}