Summery Summery
Whether current WordPress query has results to loop over.
Syntax Syntax
Return Return
(bool)
Source Source
File: wp-includes/query.php
*/
function have_posts() {
global $wp_query;
return $wp_query->have_posts();
Advertisement
Changelog Changelog
| Version | Description |
|---|---|
| 1.5.0 | Introduced. |