更改我的 wp 模板中的评论标题
好的,我有网站,并且想要更改页面底部附近的“留下回复”字符串。这是 WordPress 模板,我浏览了整个页面以找到该字符串所在的位置。我最终使用了 wp-incledes
中的 get_the_title()
函数。我看了wp-admin的评论框里面,没有这样的字符串。
这是链接,如果您能给我想法。
http://zivibolje.com/pobedite-nesanicu-u-par-koraka/
Ok i have website, and want to change Leave Reply string near the bottom of the page. It is wordpress template, and i looked all over the page to find where is that string located. I ended up on get_the_title()
function inside wp-incledes
. I watched inside comment box in wp-admin, and there is no string like that.
Here is the link, if you can give me idea.
http://zivibolje.com/pobedite-nesanicu-u-par-koraka/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
** * 更新 * **
您的主题使用函数
comment_form()
(参考< /a>)。您可以向该函数添加参数,例如:comment_form(array('title_reply' => 'Leave a reply' ));
转到主题编辑器,选择
comments.php< /code> 并在倒数第二条规则中将
comment_form();
替换为上面的代码。当然,将“留下回复”替换为您自己的文本。** * update * **
Your theme uses the function
comment_form()
(reference). You can add arguments to that function, for instance:comment_form(array('title_reply' => 'Leave a reply' ));
Go to your theme editor, select
comments.php
and at the second to last rule replacecomment_form();
with the code above. Replace 'Leave a reply' with your own text of course.您应该检查主题文件夹中的 comments.php 文件。搜索回复标题
You should check on your comments.php file on your theme folder. Search for reply-title