0

Wordpresscomment_form_comments_closed钩子会在评论关闭时触发,即使它们从未对帖子打开,因此,“评论已关闭”消息将在每个评论被禁用的帖子后显示。如果从未为帖子启用评论,有没有办法删除该消息?应该可以有一个没有评论的帖子和一个不显示此消息的评论表单。另一方面,包含已关闭评论的帖子应显示该消息。

function my_comments_closed() {
        if ( ! is_page() AND post_type_supports( get_post_type(), 'comments' ) ) : ?>
            <p class="nocomments"><?php _e( 'Comments are closed', 'mytheme' ); ?></p>
        <?php endif;
    }
    add_action( 'comment_form_comments_closed', 'my_comments_closed' );
4

0 回答 0