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



in_the_loop › WordPress Function

Seit2.0.0
Veraltetn/v
in_the_loop ( Keine Parameter )
Gibt zurück:
  • (bool) True if caller is within loop, false if loop hasn't started or ended.
Definiert in:
Codex:

Determines whether the caller is in the Loop.

For more information on this and similar theme functions, check out the {@link Conditional Tags} article in the Theme Developer Handbook.


Quellcode

function in_the_loop() {
	global $wp_query;

	if ( ! isset( $wp_query ) ) {
		return false;
	}

	return $wp_query->in_the_loop;
}