如何将评论中的提交按钮值从“发表评论”更改为“发送”

时间:2014-12-15 作者:Bassem

如何将comment中的submit按钮值从“Post comment”更改为“Send”我有“responsive”主题,我尝试搜索wp文件夹中的文件,但找不到此表单的html。

也可以通过CSS更改此值(html属性)吗?

以下是评论代码。php文件

<?php if ( comments_open() ) : ?>

    <?php
    $fields = array(
        \'author\' => \'<p class="comment-form-author">\' . \'<label for="author">\' . __( \'Name\', \'responsive\' ) . \'</label> \' . ( $req ? \'<span class="required">*</span>\' : \'\' ) .
        \'<input id="author" name="author" type="text" value="\' . esc_attr( $commenter[\'comment_author\'] ) . \'" size="30" /></p>\',
        \'email\'  => \'<p class="comment-form-email"><label for="email">\' . __( \'E-mail\', \'responsive\' ) . \'</label> \' . ( $req ? \'<span class="required">*</span>\' : \'\' ) .
        \'<input id="email" name="email" type="text" value="\' . esc_attr( $commenter[\'comment_author_email\'] ) . \'" size="30" /></p>\',
        \'url\'    => \'<p class="comment-form-url"><label for="url">\' . __( \'Website\', \'responsive\' ) . \'</label>\' .
        \'<input id="url" name="url" type="text" value="\' . esc_attr( $commenter[\'comment_author_url\'] ) . \'" size="30" /></p>\',
    );

    $defaults = array( \'fields\' => apply_filters( \'comment_form_default_fields\', $fields ) );

    comment_form( $defaults );
    ?>


<?php endif; ?>

1 个回复
最合适的回答,由SO网友:Karun 整理而成

打开comments.php 主题文件夹中的文件

<?php if ( comments_open() ) : ?>

<?php
$fields = array(
    \'author\' => \'<p class="comment-form-author">\' . \'<label for="author">\' . __( \'Name\', \'responsive\' ) . \'</label> \' . ( $req ? \'<span class="required">*</span>\' : \'\' ) .
    \'<input id="author" name="author" type="text" value="\' . esc_attr( $commenter[\'comment_author\'] ) . \'" size="30" /></p>\',
    \'email\'  => \'<p class="comment-form-email"><label for="email">\' . __( \'E-mail\', \'responsive\' ) . \'</label> \' . ( $req ? \'<span class="required">*</span>\' : \'\' ) .
    \'<input id="email" name="email" type="text" value="\' . esc_attr( $commenter[\'comment_author_email\'] ) . \'" size="30" /></p>\',
    \'url\'    => \'<p class="comment-form-url"><label for="url">\' . __( \'Website\', \'responsive\' ) . \'</label>\' .
    \'<input id="url" name="url" type="text" value="\' . esc_attr( $commenter[\'comment_author_url\'] ) . \'" size="30" /></p>\',
);

$defaults = array( \'fields\' => apply_filters( \'comment_form_default_fields\', $fields ),\'label_submit\'=>__(\'Send\') );

comment_form( $defaults );
?>
comment\\u form()函数负责显示注释表单。

它的参数是一个数组。

您在代码中看到的$默认值是一个数组,其中包含作为其项的其他数组。

“字段”项采用输入字段的数组“label\\u submit”用于更改提交按钮的标签

您可以在codex.wordpress.org/Function_Reference/comment_form

结束

相关推荐

Admin Theme customization

我遵循wordpress codex网站上关于通过插件创建管理主题的说明。我激活了插件,但我的样式表没有包含在<head>.. 这是我的代码:add_action( \'admin_init\', \'kd_plugin_admin_init\' ); add_action( \'admin_menu\', \'kd_plugin_admin_menu\' ); function kd_plugin_admin_init() { /* Register