如何在最新发布的帖子或发布的3天间隔上添加“新”徽章

时间:2019-09-19 作者:MIDO

我创建了一个新闻博客,我需要您的帮助,在自动插入所有循环(主页-存档和最新帖子页面)上添加一个“新”图标,如照片。"new" icon

提前感谢

这里是我用于最新帖子列表的循环代码

<?php
// the query
$the_query = new WP_Query( array(
       \'posts_per_page\' => 6,
       //\'offset\' => 1 // excludes the first post in the query
   ));
$ids = array();
?>

1 个回复
SO网友:moped

您可以将“新徽章逻辑”添加到循环中
while ( $loop->have_posts() ) : $loop->the_post(); 或使用the content filter.
您可以使用get_the_date() 函数来计算一篇文章的年代以及它是否是图标。

相关推荐

如何处理多个forloop?

I have and order\\u id as array但是wc_get_order 一次只接受一个id如何循环使用order\\u id并让项目id和项目名称的列表?我在课堂上使用这个。如果按如下所示传递单个id,则其工作正常 public function getStuffDone() { order_id =array(358,368) $order = wc_get_or