2023-06-11 / 363阅
在WordPress中,可以通过在文章中嵌入评论框来允许读者对文章进行评论。以下是在WordPress文章中插入评论的方法和示例代码:
// 在文章末尾插入评论框
function add_comment_form_to_posts( $content ) {
if ( is_single() ) {
ob_start();
comment_form();
$comments = ob_get_clean();
$content .= $comments;
}
return $content;
}
add_filter( 'the_content', 'add_comment_form_to_posts' );
注意:如果你使用的是Markdown格式,可以在文章模板的相应位置插入以下代码来添加评论框:
<!-- wp:comments -->
<comments-area></comments-area>
<!-- /wp:comments -->
阅读文章或者观看视频过程中有任何问题,请下方留言或者联系我Q248758228