我正试图在wordpress上创建我的第一个主题。 我添加了Disqus插件来管理帖子的评论。
这是在帖子页面调用插件的标准函数吗?
我当前的帖子页面如下:
<?php
get_header('post');
//get_template_part( 'single-post-content' );
?>
<div id="slide1">
<div class="article_content">
<h2 style="margin-bottom: 50px;"><?php the_title(); ?></h2>
<div class="content">
<?php the_post(); the_content(); ?>
</div>
</div>
</div>
<?php get_template_part('post_footer'); ?>
我想在每个帖子下面显示评论框 你会怎么做从零开始?
答案 0 :(得分:0)
您不需要调用插件的功能。
要显示评论,您应该在模板中调用comments_template功能,并在主题文件夹中添加comments.php。
在comments.php中,您应该致电comment_form以显示默认的WordPress表单。
激活Disqus插件后,该插件将通过某些操作和过滤器替换默认的WP评论表单。
您可以参考默认的WordPress主题来了解如何显示评论。
代码位于twentysixteen/single.php
和twentysixteen/comments.php
<强>更新强>
如果插件(Disqus WordPress)不能正常工作,您可以在主题上手动安装Discuz。请参阅https://help.disqus.com/customer/en/portal/articles/1183281-manually-install-disqus-on-wordpress