WordPress文章置顶功能的一些应用代码

<?php
$sticky = get_option('sticky_posts');
rsort( $sticky );
$sticky = array_slice($sticky, 0, 9);
query_posts( array( 'post__in' => $sticky, 'caller_get_posts' => 1 ) );
while (have_posts()) : the_post();  php endwhile;?>

posted @ 2012-04-17 15:38  HTL  阅读(664)  评论(0编辑  收藏  举报
htl