3

我正在使用 wordpress 为一些治疗师建立一个网站,并使用帖子的评论部分与治疗师进行问答。但是我在“发表评论”按钮上找不到文本的来源。我想将其更改为“发布问题”。

主题中的 comments.php 没有任何内容,我在主 wp-comments-post.php 的任何地方都找不到它

任何帮助都会很棒!

谢谢

网址是http://s416809079.onlinehome.us/ask-the-treatment/

编辑:我的困惑是我在任何地方都找不到“发表评论”。另外,如果我只是添加它,那么就会变成两个按钮,而新的按钮实际上并没有提交。这是代码。

<?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; ?>
4

5 回答 5

11

评论表单 Codex包含您需要了解的有关自定义评论表单值的所有信息。

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

那应该做你需要的。

于 2012-10-10T23:44:19.743 回答
0

只需搜索文本post comment并更改它valuebutton标签,

   <input name="submit" type="submit" id="submit" value="Post a Question">
于 2012-10-10T20:57:10.030 回答
0

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

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

如果您在所有文件中搜索“发表评论”,您应该会找到您要查找的内容。

于 2012-10-10T20:57:43.147 回答
0

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

于 2012-10-10T20:57:55.850 回答
-1

在类下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">
...
于 2012-10-10T21:02:55.190 回答