WordPresss是全球最流行的建站程序,所以很多网络营销从业者都用WordPress建站做网络推广。
- WordPress置顶文章通常仅显示在首页上,类别存档页面不显示置顶文章。
- 有更多丰富内容的网站,会用置顶文章来作为推荐文章。
- 以便访问者可以查看网站的推荐内容。
如果类别列表显示网站上的所有置顶文章,它显然会影响用户体验,因此只显示该类别中的置顶推荐文章更友好。
WordPress分类页面调用当前分类置顶文章方法
如果要在类别存档页面上,调用当前分类的置顶文章,可以使用陈沩亮在本文中分享的方法。
将以下代码添加到主题archive.php,或category.php模板的主循环上方 ▼
<?php query_posts(array( "category__in" => array(get_query_var("cat")), "post__in" => get_option("sticky_posts"), 'showposts' => 3, ) ); 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(); ?>
其中:'showposts'=> 3
,是显示的数量。
从常规文章列表中排除已经置顶的文章 ▼
<?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;?>
如果你想让WordPress分类/标签/作者页显示置顶文章,请点击查看以下建站教程 ▼
希望陈沩亮博客( https://www.chenweiliang.com/ ) 分享的《WordPress分类归档页面 如何调用当前分类置顶文章?》,对您有帮助。
欢迎分享本文链接:https://www.chenweiliang.com/cwl-982.html
喜欢就分享和按赞!您的分享和按赞,是我们持续的动力!