我想在 single.php 中添加评论。如果需要添加额外的代码或其他文件,请通知我。提前致谢。这是我的 single.php 文件:
<div class="col-m-9">
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<h3><a href="<?php the_permalink(); ?> ">
<?php the_title(); ?></a></h3>
<?php the_post_thumbnail('portfolio-thumb'); ?>
<?php the_content(); ?>
<?php comments_template('', true); ?>
<?php endwhile; ?>
<?php else : ?>
<h2>404 not found:</h2>
<?php endif; ?>
</div>
但它没有显示评论选项。我已经尝试了很长时间了。 我还没有添加 comments.php 。
答案 0 :(得分:0)
您需要在主题文件夹中有一个名为comments.php
的文件才能呈现模板。或者您可以指定文件名并将其作为函数的第一个参数传递。
https://developer.wordpress.org/reference/functions/comments_template/