目前所有在售的中文wordpress主题,很少有做到wordpress分类列表置顶的功能,此功能使用场景并不少,只是很少被站长会使用到,大家可以设想一下。在一个垂直的分类列表中,一些真正热门的文章是需要放在置顶位置让更多人浏览到的,甚至可以评论或是转化到群组中。但是这个功能被很多站长忽略掉了,那今天大挖就分享给大家怎样通过diy给自己的wordpress主题实现分类文章置顶功能。简单起来也比较简单,但是需要有一定的HTML开发经验及CSS代码技巧才能得到满意的样式。
将下面的代码添加到主题 archive.php 或者 category.php 模板主循环上面:
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(); ?> <h1>置顶<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1> <?php endwhile; wp_reset_query(); ?> |