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



get_commentdata › WordPress Function

Seit0.71
Veraltet2.7.0
get_commentdata ( $comment_id, $no_cache = 0, $include_unapproved = false )
Parameter: (3)
  • (int) $comment_id The ID of the comment
    Erforderlich: Ja
  • (int) $no_cache Whether to use the cache (cast to bool)
    Erforderlich: Nein
    Standard:
  • (bool) $include_unapproved Whether to include unapproved comments
    Erforderlich: Nein
    Standard: false
Siehe:
Gibt zurück:
  • (array) The comment data
Definiert in:
Codex:

Retrieve an array of comment data about comment $comment_id.



Quellcode

function get_commentdata( $comment_id, $no_cache = 0, $include_unapproved = false ) {
	_deprecated_function( __FUNCTION__, '2.7.0', 'get_comment()' );
	return get_comment($comment_id, ARRAY_A);
}