最近在使用WordPress时用到wp_get_recent_posts函数,以前一直没用过,今天碰到一个问题,默认情况下,如果根据官方给的示例: 12345678910

最新文章

    <?php $recent_posts = wp_get_recent_posts; fo

WordPress利用wp_get_recent_posts函数显示最新文章
最近在使用WordPress时用到wp_get_recent_posts函数,以前一直没用过,今天碰到一个问题,默认情况下,如果根据官方给的示例:

1
2
3
4
5
6
7
8
9
10
<h2>最新文章</h2>
<ul>
<?php
$recent_posts = wp_get_recent_posts();
foreach( $recent_posts as $recent ){
echo ‘<li><a href="’ . get_permalink($recent["ID"]) . ‘">’ . $recent["post_title"].‘</a> </li> ‘;
}
wp_reset_query();
?>
</ul>

直接这么用的话,默认会将计划任务文章显示出来,而如果使用WP_Query或query_posts方法都不会出现这种错误。这样显示是有问题的,生产环境必须只能显示已经发布的文章,你必须要在参数中指定状态:

1
2
3
4
5
6
7
8
9
10
11
<h2>最新发布文章</h2>
<ul>
<?php
$args = array( ‘numberposts’ => ‘5’,‘post_status’ => ‘publish’, );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
echo ‘<li><a href="’ . get_permalink($recent["ID"]) . ‘">’ . $recent["post_title"].‘</a> </li> ‘;
}
wp_reset_query();
?>
</ul>

指定post_status参数就行。

温馨提示:本文最后更新于 2023-12-09 15:46 ,某些文章具有时效性,若有错误或已失效,请在下方留言或联系QQ115904045
声明:
1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:115904045@qq.com,我们将第一时间处理!
2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持
3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明

给TA打赏
共{{data.count}}人
人已打赏
wordpress教程

WordPress添加打赏(乞讨)功能

2023-12-9 15:46:47

wordpress教程

屏蔽WordPressRSS订阅Feed接口

2023-12-9 15:46:49

  • 0 条回复 A文章作者 M管理员
      暂无讨论,说说你的看法吧
    购物车
    优惠劵
    今日签到
    有新私信 私信列表
    搜索

    夕阳无别事,等风也等你

    联系我们