我如何将需要更改的消息更改为任何文本?
$req = get_option( 'require_name_email' );
$aria_req = ( $req ? " aria-required='true'" : '' );
$fields = array(
'<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' ></div>',
);
答案 0 :(得分:0)
您不需要这些括号。
$aria_req = ( $req ? " aria-required='true'" : '' );
替换为:
$aria_req = $req ? " aria-required='true'" : '';
如果$ req有一个值,则渲染aria属性。而且我认为您也不需要$ fields变量也可以是数组,除非您要对其进行其他操作。
$fields = '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' ></div>';