我正在为一些使用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 …
Run Code Online (Sandbox Code Playgroud)