in_the_loop()

Whether the caller is in the Loop.


Return

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


Source

File: wp-includes/query.php

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


Changelog

Changelog
Version Description
WP-2.0.0 Introduced.