如何在最新发布的帖子或发布的3天间隔上添加“新”徽章 时间:2019-09-19 作者:MIDO 我创建了一个新闻博客,我需要您的帮助,在自动插入所有循环(主页-存档和最新帖子页面)上添加一个“新”图标,如照片。提前感谢这里是我用于最新帖子列表的循环代码<?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() 函数来计算一篇文章的年代以及它是否是图标。 文章导航