2023-06-11 / 761阅
wp_list_comments()
该函数用于显示评论列表,可接受多个参数用于控制评论显示效果。以下为常用参数:
示例代码:
<?php
$args = array(
'avatar_size' => 50,
'style' => 'ol',
'type' => 'comment',
'callback' => null,
'max_depth' => 0,
'reverse_top_level' => true
);
wp_list_comments($args);
?>
get_comment_author()
该函数用于显示评论作者的名字。
示例代码:
<p>评论作者:<?php echo get_comment_author(); ?></p>
get_comment_text()
该函数用于显示评论内容。
示例代码:
<p>评论内容:<?php echo get_comment_text(); ?></p>
comment_form()
该函数用于显示评论表单,可接受多个参数用于控制评论表单显示效果。以下为常用参数:
示例代码:
<?php
$args = array(
'comment_field' => '<label for="comment">评论内容:</label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea>',
'comment_notes_before' => '',
'comment_notes_after' => '',
'label_submit' => '发表评论',
'title_reply' => '发表评论',
'cancel_reply_link' => '取消回复',
);
comment_form($args);
?>
以上是WordPress评论相关函数的常用示例代码,可根据需要进行相应的修改和定制。
阅读文章或者观看视频过程中有任何问题,请下方留言或者联系我Q248758228