欢迎访问服务器技术网-www.fuwuqijishu.com

WordPress调用上一周文章内容列表的方法

网站建设 fuwuqijishu 2年前 (2022-09-04) 132次浏览 0个评论 扫描二维码

关于WordPress相关文章、最新文章的调用我们应该还好办,比如默认的系统就支持调用最新文章的模块,以及相关文章我们可以使用插件或者无插件调用。但是,如果我们需要调用上一周网站更新的内容如何实现呢?因为公司某个网站需要调用上一周的内容出来,就找找看看有没有非插件实现的方法。

如果使用插件很简单,这里我不用插件,于是找到一个不错的方法。

第一、调用上一周文章代码

function wpweek_this_week() {
$week = date(‘W’);
$year = date(‘Y’);
$the_query = new WP_Query( ‘year=’ . $year . ‘&w=’ . $week );
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<h2><a href=”<?php the_permalink(); ?>” title=”<?php the_title(); ?> “><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php else:  ?>
<p><?php _e( ‘没有合适的内容’ ); ?></p>
<?php endif;
}

将代码添加到当前主题的Functions.php文件中。

第二步、调用文章

<?php wpweek_this_week(); ?>

然后在需要调用的位置,输入上面代码就可以。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2119.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900