Hi!请登陆

WordPress分类列表页怎么置顶本分类文章?

2021-2-1 67 2/1

将下面的代码添加到主题 archive.php 或者 category.php 模板主循环上面: 

  1. <?php
  2.     query_posts(array(
  3.         "category__in" => array(get_query_var("cat")),
  4.         "post__in" => get_option("sticky_posts"),
  5.         'showposts' => 3,
  6.         )
  7.     );
  8.     while(have_posts()) : the_post();
  9. ?>
  10. <h1>置顶<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
  11. <?php
  12.     endwhile;
  13.     wp_reset_query();
  14. ?>

其中: 'showposts' => 3, 是显示数量。

答案内容来自知更鸟

相关推荐