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



get_comments › WordPress Function

Seit2.7.0
Veraltetn/v
get_comments ( $args = '' )
Parameter:
  • (string|array) $args Optional. Array or string of arguments. See WP_Comment_Query::__construct() for information on accepted arguments. Default empty string.
    Erforderlich: Nein
    Standard: (leer)
Gibt zurück:
  • (WP_Comment[]|int[]|int) List of comments or number of found comments if `$count` argument is true.
Definiert in:
Codex:

Retrieves a list of comments.

The comment list can be for the blog as a whole or for an individual post.


Quellcode

function get_comments( $args = '' ) {
	$query = new WP_Comment_Query();
	return $query->query( $args );
}