更改我的 wp 模板中的评论标题

发布于 2024-10-06 16:30:17 字数 271 浏览 1 评论 0原文

好的,我有网站,并且想要更改页面底部附近的“留下回复”字符串。这是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南风起 2024-10-13 16:30:17

** * 更新 * **

您的主题使用函数 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 replace comment_form(); with the code above. Replace 'Leave a reply' with your own text of course.

瀟灑尐姊 2024-10-13 16:30:17

您应该检查主题文件夹中的 comments.php 文件。搜索回复标题

You should check on your comments.php file on your theme folder. Search for reply-title

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文