A5下载文章资讯

分类分类

WordPress置顶文章的调用方法

2015-09-07 13:43作者:fang

<?php

$sticky = get_option('sticky_posts');

rsort( $sticky );

$sticky = array_slice( $sticky, 0, 5);

query_posts( array( 'post__in' => $sticky, 'caller_get_posts' => 1 ) );

if (have_posts()) :

while (have_posts()) : the_post();

?>

<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></li>

<?php endwhile; endif; ?>

展开全部

相关

说两句网友评论
    我要跟贴
    取消