Wordpress 3.2.0 需要帮助将评论元中的日期格式本地化为西班牙语

发布于 2024-12-14 04:20:14 字数 375 浏览 0 评论 0原文

我正在为西班牙客户创建一个博客:

http://www.microcementoeuropeo.com/blog/

主题是从头开始创建的,我一直在手动翻译评论表单等的英文文本。但是 - 我遇到了评论元中日期格式的问题,该问题显示为:

07/11/2011 8:10 pm

...我需要更改为:

07/11/2011 a las 8:10 pm

我尝试在 WordPress 安装的常规设置中更改格式并在 comments.php 文件中进行搜索,但没有用。任何线索表示赞赏!

I´m working on a blog for a Spanish client:

http://www.microcementoeuropeo.com/blog/

The theme was created from scratch and I have been manually translating english text for comments form etc. However - i´ve run into a problem with the date format in the comments meta which displays as:

07/11/2011 at 8:10 pm

...which I need to change to:

07/11/2011 a las 8:10 pm

I´ve tried changing the format in the general settings of the wordpress install and searched in the comments.php file but to no avail. Any clues appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

何处潇湘 2024-12-21 04:20:14

我手头没有安装 WP 来尝试此操作,但我认为您可以使用 the_date() 和 the_time() 函数。像这样的事情:

<p>Posted: <?php the_time('F j, Y'); ?> a las <?php the_time('g:i a'); ?></p>

您可能需要更改每个函数的参数以匹配您的格式。

http://codex.wordpress.org/Template_Tags/the_time

I don't have a WP install at hand to try this but I think you can use the_date() and the_time() functions. Something like this:

<p>Posted: <?php the_time('F j, Y'); ?> a las <?php the_time('g:i a'); ?></p>

You may need to changed the parameters to each function to match your format.

http://codex.wordpress.org/Template_Tags/the_time

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