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



get_options › WordPress Function

Seit6.4.0
Veraltetn/v
get_options ( $options )
Parameter:
  • (string[]) $options An array of option names to retrieve.
    Erforderlich: Ja
Gibt zurück:
  • (array) An array of key-value pairs for the requested options.
Definiert in:
Codex:

Retrieves multiple options.

Options are loaded as necessary first in order to use a single database query at most.


Quellcode

function get_options( $options ) {
	wp_prime_option_caches( $options );

	$result = array();
	foreach ( $options as $option ) {
		$result[ $option ] = get_option( $option );
	}

	return $result;
}