Disqus评论系统未显示

时间:2019-06-16 作者:Yikko

我已经安装了Discus评论系统插件。我需要一些帮助来使用它,我无法在我的帖子或页面中显示评论框。我使用的是自定义主题,没有评论。php文件。这是个问题吗?这是我的循环代码

<div class="row feed" id="" style="padding: 2.5em 0 1em 0;">
          <?php if( $menu_feed->have_posts() ): ?>
          <?php while( $menu_feed->have_posts() ): $menu_feed->the_post(); ?>
            <section>
              <div class="col-sm-12 col-md-7 col-lg-7 col-xl-7 " id="pagesThumb">
                <img class="img-fluid thumb" src="<?php echo the_post_thumbnail_url(); ?>" >
              </div>
              <div class="col-sm-12 col-md-5 col-lg-5 col-xl-5 in-menu" id="pageInMenu">
                <h4 class="page-link"><?php the_title(); ?></h4>
                  <?php the_content(); ?>
                <a class="btn btn-link float-right next" href="" onclick=""><i class="fas fa-angle-down"></i></a>
              </div>
              <div class="col-sm-12 col-md-12 col-lg-12 comment-box">
                <?php comments_template(); ?>
              </div>
            </section>
          <?php endwhile; ?>
          <?php endif; wp_reset_postdata(); ?>
        </div>

1 个回复
SO网友:Joshua

确保已遵循中建议的设置

WpDiscuz Comment Display Settings

相关推荐

Geoip shortcodes in comments

我想知道如何从geoip插件添加国家/地区短代码(https://pl.wordpress.org/plugins/geoip-detect/) 输入注释字段。[geoip\\u detect2 property=“country”]据我所知,注释字段必须是所见即所得字段(默认情况下不是文本)。还有其他方法吗?通过自定义php函数或其他方式?你好,Michal