单个博客帖子中的评论文本区,如果批准,则显示评论

时间:2014-07-17 作者:frshjb373

我正在修改一些现有代码,并尝试添加用户在单个帖子上留下评论的功能,然后根据批准回送这些评论。我需要在下面添加<?php the_content(); ?>为了获得评论,我需要在下面添加什么代码?

2 个回复
SO网友:user52466

内容下方的右波纹管(单柱)

<?php if (function_exists(\'paged_comments_template\')) paged_comments_template(); else comments_template(); ?>
以及您需要在wordpress面板中更改的批准。

SO网友:Brad Dalton

在内容中。php,添加如下代码:

if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) :
        ?>
        <span class="comments-link"><?php comments_popup_link( __( \'Leave a comment\', \'$text_domain\' ), __( \'1 Comment\', \'$text_domain\' ), __( \'% Comments\', \'$text_domain\' ) ); ?></span>
        <?php
            endif;
在单曲结束之前。php,这:

if ( comments_open() || get_comments_number() ) {
                        comments_template();
                    }
                endwhile;
            ?>
查看单曲。php和内容。php文件中的214个主题为指南。

Moderate comments 使用讨论设置。

结束

相关推荐

Single-Custom.php上的WP_Query分页

我想做什么:设置WP_Query 在单个自定义帖子类型中分页。php模板文件我所做的工作创建了一个名为“作者”的帖子类型。该帖子类型中的每个帖子都是一个作者。2) 标准的编辑帖子屏幕页面包含一个下拉列表,其中列出了作者自定义帖子类型中的所有帖子(作者)。3) 创建了单个作者。php模板,该模板使用下拉列表中的作者元数据查询所有帖子,因此结果是一个具有相同作者的帖子列表(有点像存档):<?php // set the \"paged\" parameter (use \'page\'