wordpress分类栏目怎么让置顶文章显示在最前面
我们做网站时,如何将分类栏目里的置顶文章显示在最前面呢?然后再显示新发布的文章。怎么实现在调用最新文章列表中置顶文章靠前显示呢?代码如下:
<?php
$sticky = get_option('sticky_posts');
query_posts( array('post__in' => $sticky,'caller_get_posts' =>1,'cat'=>$cat,'showposts'=>6));
static $case_num=0;
while (have_posts()) : the_post(); ?>
<!--置顶文章-->
<li><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php $case_num++;
endwhile; wp_reset_query();
$case_num=6-$case_num;//
query_posts( array( 'post__not_in' => get_option( 'sticky_posts'),'cat'=>$cat,'showposts'=>$case_num ));
while (have_posts()) : the_post();
?>
<!--非置顶文章-->
<li><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; wp_reset_query(); ?>
代码解释:
'cat'=>$cat 是指当前分类的ID;'showposts'=>6 设置调用文章的总数量;
代码放置好之后,可以在网站后台设置置顶文章。
另外,在实际制作网站过程中,还可以针对置顶文章与非置顶文章显示不同的样式。
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
if ( is_sticky() ) {
// 这是一个置顶文章
// 输出文章标题、内容或其他内容
} else {
// 这是非置顶文章
// 输出文章标题、内容或其他内容
}
endwhile;
endif;
?>