get_comment_type

函数
get_comment_type ( $comment_ID = 0 )
参数
  • (int|WP_Comment) $comment_ID Optional. WP_Comment or ID of the comment for which to get the type. Default current comment.
    Required:
返回值
  • (string) The comment type.
定义位置
相关方法
get_comment_timeget_comment_textget_comment_datecomment_typeget_comment_meta
引入
1.5.0
弃用
-

get_comment_type: 这个函数用来获取评论的类型。评论类型是在创建评论时设置的,可以是一个字符串值,如”pingback”,”trackback”,或任何由主题或插件设置的自定义值。

检索当前评论的评论类型。

function get_comment_type( $comment_ID = 0 ) {
	$comment = get_comment( $comment_ID );

	if ( '' === $comment->comment_type ) {
		$comment->comment_type = 'comment';
	}

	/**
	 * Filters the returned comment type.
	 *
	 * @since 1.5.0
	 * @since 4.1.0 The `$comment_ID` and `$comment` parameters were added.
	 *
	 * @param string     $comment_type The type of comment, such as 'comment', 'pingback', or 'trackback'.
	 * @param string     $comment_ID   The comment ID as a numeric string.
	 * @param WP_Comment $comment      The comment object.
	 */
	return apply_filters( 'get_comment_type', $comment->comment_type, $comment->comment_ID, $comment );
}

常见问题

FAQs
查看更多 >