php 我如何更改“发表评论”按钮上的文本?

3yhwsihp  于 2023-01-08  发布在  PHP
关注(0)|答案(6)|浏览(177)

我正在建立一个网站,为一些治疗师使用WordPress的,并使用一个问题和回答后的治疗师的评论部分。但我找不到文字是从哪里来的"后评论"按钮。我想改变它为"后一个问题"。
主题中的comments.php没有任何内容,我在主wp-comments-post.php中找不到它
任何帮助都很好!
谢啦,谢啦
网址是http://s416809079.onlinehome.us/ask-the-therapist/
编辑:我的困惑是我在任何地方都找不到"帖子评论"。另外,如果我只是添加它,那么就会有两个按钮,新的一个实际上并没有提交。以下是代码。

<?php
/**
 * Comments Template
 *
 * @file           comments.php
 * @package        Pilot Fish
 * @filesource     wp-content/themes/pilot-fish/comments.php
 * @since          Pilot Fish 0.1
 */
if ( post_password_required() ) : ?>
<p class="nocomments"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'pilotfish' ); ?></p>
<?php /* Stop the rest of comments.php from being processed */
        return;
endif; ?>

<?php if (have_comments()) : ?>
<h6 id="comments"><?php comments_number(__('No Response to', 'pilotfish'), __('One Response to', 'pilotfish'), __('% Responses to', 'pilotfish')); ?> <i><?php the_title(); ?></i></h6>

<ol class="commentlist">
    <?php wp_list_comments('avatar_size=60'); ?> 
</ol>

<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?>
<nav class="pager">
    <div class="previous"><?php previous_comments_link(__( '&#8249; previous','pilotfish' )); ?></div><!-- end of .previous -->
    <div class="next"><?php next_comments_link(__( 'next &#8250;','pilotfish', 0 )); ?></div><!-- end of .next -->
</nav><!-- end of.pager -->
<?php endif; ?>

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

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

pzfprimi1#

Comment Form Codex包含您需要了解的有关自定义Comment表单值的所有内容。

$defaults = array(
    'fields' => apply_filters('comment_form_default_fields', $fields),
    'label_submit' => __('Post a Question')
);
comment_form($defaults);

应该够你用了。

gmxoilav

gmxoilav2#

将输入值设置为<input value="Post a question">

9jyewag0

9jyewag03#

只需搜索文本post comment并为其改变button标签的value

<input name="submit" type="submit" id="submit" value="Post a Question">
llew8vvj

llew8vvj4#

更改以下input元素的value属性:

<input type="submit" value="Post a Question" id="submit" name="submit">

如果你在所有文件中搜索“发表评论”,你应该会找到你要找的东西。

wecizke3

wecizke35#

避免直接编辑主题的文件,因为更新主题时可能会覆盖更改。

function change_comment_form_submit_label($arg) {
  $arg['label_submit'] = 'Post a Question';
  return $arg;
}
add_filter('comment_form_defaults', 'change_comment_form_submit_label', 11);

我已经添加了一个优先级11作为默认值是10和您的主题可能会改变它与默认的优先级。
Comment Form Codex包含您需要了解的有关自定义注解表单值的所有信息。

ki0zmccv

ki0zmccv6#

在类form-submit下更改值。
上一次

...
<p class="form-submit">
<input id="submit" type="submit" value="Post Comment" name="submit">
...

更改为

...
<p class="form-submit">
<input id="submit" type="submit" value="Post A Question" name="submit">
...

相关问题