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



have_comments › WordPress Function

Seit2.2.0
Veraltetn/v
have_comments ( Keine Parameter )
Gibt zurück:
  • (bool) True if comments are available, false if no more comments.
Definiert in:
Codex:

Determines whether current WordPress query has comments to loop over.



Quellcode

function have_comments() {
	global $wp_query;

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

	return $wp_query->have_comments();
}