in_the_loop

Advertisement

Summery Summery

Determines whether the caller is in the Loop.

Syntax Syntax

in_the_loop()

Description Description

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

Return Return

(bool) True if caller is within loop, false if loop hasn't started or ended.

Source Source

File: wp-includes/query.php

 */
function in_the_loop() {
	global $wp_query;
	return $wp_query->in_the_loop;

Advertisement

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.

Advertisement

Leave a Reply