比较WordPress中的帖子日期

时间:2011-10-11 16:49:38

标签: php html wordpress

我正在尝试根据WordPress帖子的日期向HTML标记添加一个类。到目前为止,我有代码:

while ($recentPosts -> have_posts()) : 
    $recentPosts -> the_post();    
    if (strtotime(the_date('', '', '', false)) > strtotime('-14 days')) {
        echo '<h5 class="new">';
    }
    else {
        echo '<h5>';
    }
    the_date();
endwhile;

班级工作得很好,但我遇到的问题是日期不会出现在h5标签之后。不确定我错过了什么或做错了什么。

菲尔

1 个答案:

答案 0 :(得分:1)

问题似乎是您要拨打the_date()两次...尝试使用get_the_date($postId)或将the_date()存储在第2行。