Determines whether the caller is in the Loop.
Description
For more information on this and similar theme functions, check out the Conditional Tags article in the Theme Developer Handbook.
Source
function in_the_loop() {
global $wp_query;
if ( ! isset( $wp_query ) ) {
return false;
}
return $wp_query->in_the_loop;
}
Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |
Modify Single Post Entry Titles
For use in your functions file, this code example enables you to modify the default output of your entry titles.