Sprache wechseln
wpseek auf Twitter


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




get_comment_type [ ]

get_comment_type ( $comment_ID = 0 )
Parameter:
  • (int) $comment_ID The ID of the comment for which to get the type. Optional.
Nutzt:
Gibt zurück:
  • (string) The comment type
Definiert in:
Codex



Retrieve the comment type of the current comment.

Quellcode

function get_comment_type( $comment_ID = 0 ) {
	$comment = get_comment( $comment_ID );
	if ( '' == $comment->comment_type )
		$comment->comment_type = 'comment';

	return apply_filters('get_comment_type', $comment->comment_type);
}

Beispiele [ wp-snippets.com ]

Top Google Suchergebnisse

Mehr ...

0 Nutzerkommentare

Noch keine. Sei der Erste!

Neu hinzufügen ...