wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



have_posts › WordPress Function

Seit1.5.0
Veraltetn/v
have_posts ( Keine Parameter )
Gibt zurück:
  • (bool) True if posts are available, false if end of the loop.
Definiert in:
Codex:

Determines whether current WordPress query has posts to loop over.



Quellcode

function have_posts() {
	global $wp_query;

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

	return $wp_query->have_posts();
}