wordpress调用某分类下的置顶文章
指定某个分类进行调用置顶的文章,没有置顶文章就调用该分类下最新的文章。
调出数据表wp_options字段为option_name为sticky_posts的置顶文章。
<ul>
<?php $sticky = get_option('sticky_posts');
rsort( $sticky );
$sticky = array_slice( $sticky, 0, 50);//array_slice() 函数在数组中根据条件取出一段值,并返回。
query_posts( 'p=6', 'cat' => 2, 'post__in' => $sticky, 'ignore_sticky_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;
?>
</ul>
整理
- 我的微信
- 这是我的微信扫一扫
- 我的微信公众号
- 我的微信公众号扫一扫