我们希望用户注册并发表评论。所以我们,
选中“任何人都可以注册”选项为true选中“用户必须注册并登录才能发表评论”选项为true现在,问题是在“说出你的想法”下面的一个贴子页面中什么都没有显示。这是问题的快照->

以下是评论。父文件的php。
<?php
/*
WARNING: This file is part of the core Genesis framework. DO NOT edit
this file under any circumstances. Please do all modifications
in the form of a child theme.
*/
/**
* Handles the comment structure.
*
* This file is a core Genesis file and should not be edited.
*
* @category Genesis
* @package Templates
* @author StudioPress
* @license http://www.opensource.org/licenses/gpl-license.php GPL v2.0 (or later)
* @link http://www.studiopress.com/themes/genesis
*/
if ( ! empty( $_SERVER[\'SCRIPT_FILENAME\'] ) && \'comments.php\' == basename( $_SERVER[\'SCRIPT_FILENAME\'] ) )
die ( \'Please do not load this page directly. Thanks!\' );
if ( post_password_required() ) {
printf( \'<p class="alert">%s</p>\', __( \'This post is password protected. Enter the password to view comments.\', \'genesis\' ) );
return;
}
do_action( \'genesis_before_comments\' );
do_action( \'genesis_comments\' );
do_action( \'genesis_after_comments\' );
do_action( \'genesis_before_pings\' );
do_action( \'genesis_pings\' );
do_action( \'genesis_after_pings\' );
do_action( \'genesis_before_comment_form\' );
do_action( \'genesis_comment_form\' );
do_action( \'genesis_after_comment_form\' );
最合适的回答,由SO网友:vajrasar 整理而成
最后,我按照Studiopress支持团队的建议,用老派的方式禁用所有插件并逐个启用它们,并发现“Genesis Simple Comments”插件导致了这个问题。
该插件的作者尼克说,它需要更新,所以现在这个问题已经解决了。