本文来给大家分享下wordpress调用置顶文章的方法,不多说,直接上代码:

<?php  
$sticky = get_option('sticky_posts');  
rsort( $sticky );  
$sticky = array_slice( $sticky, 0, 1);  
query_posts( array( 'post__in' => $sticky, 'caller_get_posts' => 1 ) );  
if (have_posts()) :  
while (have_posts()) : the_post();  
?>  
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php endwhile; endif; ?>

 

以上代码的解释:

第一行给$sticky赋值;

第二行rsort( $sticky ); 对置顶文章数组逆向排序,即大ID在前;

第三行$sticky = array_slice( $sticky, 0, 1);控制显示置顶文章的数量,仅修改数字1即可,其他参数不要动,如果输出全部的置顶文章,删掉这一行即可;

第四行里面的’post__in’ => get_option(‘sticky_posts’)确定了该LOOP调用的是置顶文章列表;’caller_get_posts’这个参数的作用是排除不是置顶的文章。

接下来就是循环了,循环里面的代码就是正常调用的代码即可。

相关新闻

联系我们

联系我们

0471-2525853

在线咨询:点击这里给我发消息

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信
关注微信
分享本页
返回顶部