0

我正在尝试调整默认的 Wordpress 评论表单,使其与 Foundation 框架一起工作。

这是我functions.php目前在里面使用的代码:

function pondera_comment_form() {
    $comment_args = array(
        'title_reply'=>'Have something to say?',
        'fields' => apply_filters( 'comment_form_default_fields',
        array(
            'author' => '<div class="small-12 large-6 columns">' . '<label for="author">' . __( 'First Name' ) . '</label> ' . ( $req ? '<span>*</span>' : '' ) . '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></div>',
            'email'  => '<div class="small-12 large-6 columns">' . '<label for="email">' . __( 'Email Address' ) . '</label> ' . ( $req ? '<span>*</span>' : '' ) . '<input id="email" name="email" type="text" value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' />'.'</div>',
            'url'    => '' )
        ),
        'comment_field' => 
        '<div class="small-12 large-12 columns">' . '<label for="comment">' . __( 'Comments' ) . '</label>' . '<textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea>' .  '</div>',
        'comment_notes_before' => '',
        'comment_notes_after' => '',
    );
    comment_form($comment_args);
}

我正在寻找一种与其他一些输入相同的方式自定义提交按钮的方法,但我不确定如何执行此操作。我想将它包装在其中,并向输入本身<div class="small-12 columns>添加一个类。.button

我也希望对<h3>WP 生成的标题做同样的事情。

4

1 回答 1

1

好的,我已经意识到在comments.php. 非常感谢@sulfureous 为我指明了正确的方向。

对于任何感兴趣的人,这是我放置在其中的代码comments.php(最初引用的函数随后被删除):

<div class="row">
    <div class="large-12 columns">
        <?php if(comments_open()) : ?>
            <h3>Have something to say?</h3>
            <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="comments-form">
                <div class="row">
                    <div class="small-12 large-6 columns">
                        <label for="author"><?php _e('Name'); ?> <?php if($req) echo "(required)"; ?></label>
                        <input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />
                    </div>
                    <div class="small-12 large-6 columns">
                        <label for="email"><?php _e('Email'); ?> <?php if($req) echo "(required)"; ?></label>
                        <input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />
                    </div>
                </div>
                <div class="row">
                    <div class="small-12 columns">
                        <label for="comment"><?php _e('Comment'); ?></label>
                        <textarea name="comment" id="comment" cols="100%" rows="10" tabindex="3"></textarea>
                    </div>
                </div>
                <div class="row">
                    <div class="small-12 columns">
                        <input name="submit" type="submit" id="submit" tabindex="4" class="btn" value="Post Comment" />
                        <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
                    </div>
                </div>
                <?php do_action('comment_form', $post->ID); ?>
            </form>
        <?php else : ?>
            <h5><?php _e('Sorry, the comments are now closed.'); ?></h5>
        <?php endif; ?>
    </div>
</div>
于 2013-07-29T12:51:11.620 回答