我已将“logged\\u in\\u as”的类放入另一个容器中,以在另一列中显示内容:
<div id="content-form">
<?php
$fields = array(
\'author\' => \'<div class="right_col"><p class="comment-form-author">
<input id="author" name="author" type="text" value="\' . esc_attr( $commenter[\'comment_author\'] ) . \'" size="30"\' . $aria_req . \' /></p>\',
\'email\' => \'<p class="comment-form-email">
<input id="email" name="email" type="text" value="Name\' . esc_attr( $commenter[\'comment_author_email\'] ) . \'" size="30"\' . $aria_req . \' /></p>\',
\'url\' => \'<p class="comment-form-url">
<input id="url" name="url" type="text" value="\' . esc_attr( $commenter[\'comment_author_url\'] ) . \'" size="30" /></p></div>\',
);
comment_form( array(
\'label_submit\' => \'Beitrag kommentieren\',
\'title_reply\' => \'\',
\'fields\' => apply_filters(
\'comment_form_default_fields\', $fields ),
\'comment_notes_before\' => \'\',
\'comment_notes_after\' => \'\',
\'logged_in_as\' => \'<div class="right_col"><p class="logged-in-as">\'
. sprintf(
__( \'Logged in as <a href="%s">%s</a> .
<a href="%s" title="Log out of this account">Log out?</a></p></div>\'
)
, admin_url( \'profile.php\' )
, $user_identity
, wp_logout_url( apply_filters( \'the_permalink\'
, get_permalink( $post_id )
)
)
)
?>
</div>
但注释字段(位于左列)的提交按钮仅显示在“logged\\u in\\u as”内容之后。
但我想把提交按钮放在评论栏下方的左侧。如何将提交按钮放在“logged\\u in\\u as”内容之前?