comment_class

函数
comment_class ( $css_class = '', $comment = null, $post = null, $display = true )
参数
  • (string|string[]) $css_class Optional. One or more classes to add to the class list. Default empty.
    Required:
    Default: (empty)
  • (int|WP_Comment) $comment Comment ID or WP_Comment object. Default current comment.
    Required:
    Default: null
  • (int|WP_Post) $post Post ID or WP_Post object. Default current post.
    Required:
    Default: null
  • (bool) $display Optional. Whether to print or return the output. Default true.
    Required:
    Default: true
返回值
  • (void|string) Void if `$display` argument is true, comment classes if `$display` is false.
定义位置
相关方法
get_comment_classcomments_rsscomment_existscomment_linkcomment_date
引入
2.7.0
弃用
-

comment_class: 这个函数生成一串用于显示评论的HTML元素的类。这些类别是基于评论的状态(批准、待定、垃圾邮件等)以及评论是否是对另一个评论的回复。

为每个评论元素生成语义类别。

function comment_class( $css_class = '', $comment = null, $post = null, $display = true ) {
	// Separates classes with a single space, collates classes for comment DIV.
	$css_class = 'class="' . implode( ' ', get_comment_class( $css_class, $comment, $post ) ) . '"';

	if ( $display ) {
		echo $css_class;
	} else {
		return $css_class;
	}
}

常见问题

FAQs
查看更多 >