wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



have_posts › WordPress Function

Od1.5.0
Przestarzałyn/a
have_posts ( Brak parametrów )
Powrót:
  • (bool) True if posts are available, false if end of the loop.
Zdefiniowane na:
Codex:

Determines whether current WordPress query has posts to loop over.



Źródło

function have_posts() {
	global $wp_query;

	if ( ! isset( $wp_query ) ) {
		return false;
	}

	return $wp_query->have_posts();
}