wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



remove_allowed_options › WordPress Function

Seit5.5.0
Veraltetn/v
remove_allowed_options ( $del_options, $options = '' )
Parameter: (2)
  • (array) $del_options
    Erforderlich: Ja
  • (string|array) $options
    Erforderlich: Nein
    Standard: (leer)
Gibt zurück:
  • (array)
Definiert in:
Codex:

Removes a list of options from the allowed options list.



Quellcode

function remove_allowed_options( $del_options, $options = '' ) {
	if ( '' === $options ) {
		global $allowed_options;
	} else {
		$allowed_options = $options;
	}

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

	return $allowed_options;
}