不显示置顶文章
$paged = get_query_var( 'page' ) ? get_query_var( 'page' ) : 1; $sticky = get_option( 'sticky_posts' ); $args = array( 'ignore_sticky_posts' => 1,//忽略sticky_posts,不置顶,但是输出置顶文章 'post__not_in' => $sticky,//排除置顶文章,不输出 'paged' => $paged ); query_posts( $args ); wp_reset_query();
只显示置顶文章
/* 获取所有置顶文章 */ $sticky = get_option( 'sticky_posts' ); /* 对这些文章排序, 日期最新的在最上 */ rsort( $sticky ); /* 获取5篇文章 */ $sticky = array_slice( $sticky, 0, 5 ); /* 输出这些文章 */ query_posts( array( 'post__in' => $sticky, 'ignore_sticky_posts' => 1 ) ); while ( have_posts() ) : the_post(); /* 输出内容 */ endwhile; wp_reset_query();
作者:黄聪
出处:http://www.cnblogs.com/huangcong/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
出处:http://www.cnblogs.com/huangcong/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。