备忘:wordpress取消回复时强制填写名字和邮箱
将下面这段代码删除或注释掉
if ( get_option(‘require_name_email’) && !$user->ID ) {
if ( 6 > strlen($comment_author_email) || ” == $comment_author )
wp_die( __(‘Error: please fill the required fields (name, email).’) );
elseif ( !is_email($comment_author_email))
wp_die( __(‘Error: please enter a valid email address.’) );
}
目前还没测试 不知道没名字会不会空白显示
1条评论▼