WordPress利用wp_get_recent_posts函数显示最新文章

最近在使用WordPress时用到wp_get_recent_posts函数,以前一直没用过,今天碰到一个问题…

IMG_0
最近在使用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参数就行。

类别:WordPress 进阶教程

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册