将wordpress中的日期格式更改为相对日期

时间:2013-05-03 03:02:06

标签: php wordpress

在这里需要一点帮助,因为我对PHP并不熟悉。我有两种帖子类型,一种是以“x time ago”格式显示日期,另一种是显示传统的wordpress日期格式。

我在wordpress主题中找到了这一行,在我的帖子上显示了传统的格式。

$postheader .= '<abbr class="published" title="' . get_the_time('c') . '">' . get_the_time( get_option('date_format') ) . '</abbr></span>';

现在这个主题已经有一个预先编写的功能,可以在x分钟,天,周,年前显示时间,定义为'%s',并在下面的代码中使用

<abbr class="published" title="<?php the_time('c') ?>"><?php printf( __('%s', 'arras'), arras_posted_on( false ) ) ?></abbr> | <a href="<?php comments_link() ?>"><?php comments_number() ?></a>

我的问题是..如何修改第一个代码以显示“x time before”中的格式,就像第二个代码中使用的格式一样?我试图粘贴完全相同的行,这使我的页面在重新加载时变为空白。

1 个答案:

答案 0 :(得分:0)

尝试使用此代码:

$postheader .= '<abbr class="published" title="' . arras_posted_on( false ) . '">' . arras_posted_on( false ) . '</abbr></span>';