摘要:实用互动型wordpress主题需要分类目录需要分别展示各目录的热门文章用来丰富栏目内容。所以分类列表显示分类的置顶文章…
实用互动型wordpress主题需要分类目录需要分别展示各目录的热门文章用来丰富栏目内容。所以分类列表显示分类的置顶文章会使用户体验更加友好
在当前主题的分类列表模板中添加代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
query_posts(array(
“category__in” => array(get_query_var(“cat”)),
“post__in” => get_option(“sticky_posts”)
)
);
while(have_posts()) : the_post();
?>
<h2>【置顶】<a href=“<?php the_permalink(); ?>“ title=“<?php the_title(); ?>“><?php the_title(); ?></a></h2>
<?php
endwhile;
wp_reset_query();
?>
|
在正常的分类列表中排除已经设置为置顶的文章:
1
2
3
4
5
|
<?php while(have_posts()) : the_post(); ?>
<?php if(!is_sticky()){?>
<h2><a href=“<?php the_permalink(); ?>“ title=“<?php the_title(); ?>“><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
<?php } endwhile;?>
|
其实就是在主循环中添加if(!is_sticky())来判断,表示如果不是置顶文章则显示。
来源:http://www.wazhuti.com/424.html