Wordpress设置图像下一个新帖子标题

时间:2015-01-04 01:18:35

标签: php wordpress

我有代码:

    <div id="content88">
<div class="tip">
<div style="margin-left: 9%; margin-top: -2px;">
<center><h1><font style="margin-left:-50px;" font-size="20px" color="#BCBDC1">Last 5 posts from category</font></h1></center></p>
<?php
$catquery = new WP_Query( 'cat=11446&posts_per_page=5' );
while($catquery->have_posts()) : $catquery->the_post();
?>

<h4><a href="<?php the_permalink() ?>" rel="bookmark"><font color="#fff"><?php the_title(); ?></font></a> - <b>Last update:</b>  <span class="entry-date"><?php echo the_modified_time('Y/m/d \a\t g:i A'); ?></span> </h4> </p>

<?php endwhile; ?>
<center><h4><a href="#"><font style="margin-left:-50px;" font-size="14px" color="#BCBDC1">Click here for more results</font></a></h4></center></p>
</div>
</div>
</div>

此代码列出了特定类别的最近5篇帖子。它看起来像是:

Click to view image

它还会提供发布特定帖子的时间,如上图所示。我想要做的是在帖子旁边有x小时/天的图片,它看起来像这样:

Click to view image

但是,即使从我应该开始的事情,我也没有想到正确的方法,也没有找到任何我需要的东西,也许有人可以给我一个例子,我应该从什么开始?感谢。

1 个答案:

答案 0 :(得分:0)

您只需将帖子的时间戳与您需要的时间进行比较即可:

<?php
    $olderThanTime = strtotime('-2 hours');
    $postTime      = strtotime(get_the_time('Y-m-d H:i:s', get_the_ID()));

    if ($postTime > $olderThanTime ) {
        the_post_thumbnail('small');
    }
?>