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



get_query_var › WordPress Function

Seit1.5.0
Veraltetn/v
get_query_var ( $query_var, $default_value = '' )
Parameter: (2)
  • (string) $query_var The variable key to retrieve.
    Erforderlich: Ja
  • (mixed) $default_value Optional. Value to return if the query variable is not set. Default empty string.
    Erforderlich: Nein
    Standard: (leer)
Gibt zurück:
  • (mixed) Contents of the query variable.
Definiert in:
Codex:
Changelog:
  • 3.9.0

Retrieves the value of a query variable in the WP_Query class.



Quellcode

function get_query_var( $query_var, $default_value = '' ) {
	global $wp_query;
	return $wp_query->get( $query_var, $default_value );
}