WordPress 程序调用文章的时候,可能会有见过调用最新文章、热门文章以及多少天热度文章的列表,但是如果有一些文章是我们早期更新的,近期如果有变动重新编辑过的,这类的文章也是有需要重弄新作为编辑文章调用出来,这样可以告知用户这篇文章已经更新,荒岛本次带来 WordPress 调用最近更新过的文章的教程,只要将下面的代码添加到主题的「functions.php」文件即可。宝藏来自荒岛 - 一座藏有宝藏的小岛-https://x-imagine.com/wordpress-call-recently-updated-articles.html
// 荒岛一座藏有宝藏的小岛 function recently_updated_posts($num=10,$days=7) { if( !$recently_updated_posts = get_option('recently_updated_posts') ) { query_posts('post_status=publish&orderby=modified&posts_per_page=-1'); $i=0; while ( have_posts() && $i<$num ) : the_post(); if (current_time('timestamp') - get_the_time('U') > 60*60*24*$days) { $i++; $the_title_value=get_the_title(); $recently_updated_posts.='<li><a href="'.get_permalink().'" title="'.$the_title_value.'">' .$the_title_value.'</a></li>'; } endwhile; wp_reset_query(); if ( !empty($recently_updated_posts) ) update_option('recently_updated_posts', $recently_updated_posts); } $recently_updated_posts=($recently_updated_posts == '') ? '<li>宝藏目前 没有更新</li>' : $recently_updated_posts; echo $recently_updated_posts; } function clear_cache_recently() { update_option('recently_updated_posts', ''); } add_action('save_post', 'clear_cache_recently');宝藏来自荒岛 - 一座藏有宝藏的小岛-https://x-imagine.com/wordpress-call-recently-updated-articles.html
请按 Ctrl+D 收藏荒岛分享给好友 如您发现本文件已经失效无法下载请联系站长修正
- 荒岛公众号
- 扫一扫关注
- 荒岛小程序
- 扫一扫关注
评论