disqus 评论框不显示帖子
disqus comment box not showing for posts
我遇到了 disqus 评论框的问题。old & new posts 没有显示。我检查了 "Allow Comments" 和 "Allow trackbacks & pingbacks on this page"。在屏幕选项中 "Discussion" 也是已标记。在设置->讨论->默认文章设置中,所有选项都是 checked.Under 插件的高级选项卡,启用复选框以在 posts.On 站点上呈现 javascript,它不显示默认的 wordpress评论框 too.I 我正在使用 Islemag theme.I 不明白为什么会这样 so.I 在我的 single.php "Single Post " 文件中做了一些改动
<div id="primary" class="content-area">
<?php
$archive_content_classes = apply_filters( 'islemag_archive_content_classes', array( 'islemag-content-left', 'col-md-9' ) );
?>
<div
<?php
if ( ! empty( $archive_content_classes ) ) {
echo 'class="' . implode( ' ', $archive_content_classes ) . '"'; } ?> >//closing of div tag
<main id="main" class="site-main" role="main">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'single' );
comments_template();
endwhile;
?>
</main><!-- #main -->
</div><!-- #primary -->
</div><!-- #primary -->
如有任何帮助,将不胜感激
如果有人遇到同样的问题,可以尝试解决他们的 plugins.This 方法解决了我的 problem.I 试图停用所有 plugins.Then 激活的 disqus 插件,然后一个一个激活其他插件,检查是否有冲突的插件,因为哪个评论框没有出现在帖子中。
更多参考 check here
我试图弄清楚为什么评论表单没有显示在某些帖子上,但不是全部。但原因是 "Automatically close comments on articles" 复选框在设置上被选中 -> WP 管理面板中的讨论。希望这对以后的人有所帮助。
我遇到了 disqus 评论框的问题。old & new posts 没有显示。我检查了 "Allow Comments" 和 "Allow trackbacks & pingbacks on this page"。在屏幕选项中 "Discussion" 也是已标记。在设置->讨论->默认文章设置中,所有选项都是 checked.Under 插件的高级选项卡,启用复选框以在 posts.On 站点上呈现 javascript,它不显示默认的 wordpress评论框 too.I 我正在使用 Islemag theme.I 不明白为什么会这样 so.I 在我的 single.php "Single Post " 文件中做了一些改动
<div id="primary" class="content-area">
<?php
$archive_content_classes = apply_filters( 'islemag_archive_content_classes', array( 'islemag-content-left', 'col-md-9' ) );
?>
<div
<?php
if ( ! empty( $archive_content_classes ) ) {
echo 'class="' . implode( ' ', $archive_content_classes ) . '"'; } ?> >//closing of div tag
<main id="main" class="site-main" role="main">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'single' );
comments_template();
endwhile;
?>
</main><!-- #main -->
</div><!-- #primary -->
</div><!-- #primary -->
如有任何帮助,将不胜感激
如果有人遇到同样的问题,可以尝试解决他们的 plugins.This 方法解决了我的 problem.I 试图停用所有 plugins.Then 激活的 disqus 插件,然后一个一个激活其他插件,检查是否有冲突的插件,因为哪个评论框没有出现在帖子中。 更多参考 check here
我试图弄清楚为什么评论表单没有显示在某些帖子上,但不是全部。但原因是 "Automatically close comments on articles" 复选框在设置上被选中 -> WP 管理面板中的讨论。希望这对以后的人有所帮助。