Definition:
function in_the_loop() {}
Whether the caller is in the Loop.
Return values
returns:True if caller is within loop, false if loop hasn’t started or ended.
Source code
function in_the_loop() {
global $wp_query;
return $wp_query->in_the_loop;
}
2073

February 12, 2011 


No comments yet... Be the first to leave a reply!