get_comment_type

Definition:
function get_comment_type( $comment_ID = 0 ) {}

Retrieve the comment type of the current comment.

Parameters

  • int $comment_ID: The ID of the comment for which to get the type. Optional.

Return values

returns:The comment type

Defined filters

  • get_comment_type
    apply_filters('get_comment_type', $comment->comment_type)

Source code

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);

}

1336

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: