这里需要一些帮助,因为我对 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 ago”的格式,就像第二个代码中使用的格式一样?我试图粘贴完全相同的行,它使我的页面在重新加载时变为空白。