2019年3月28日星期四

WordPress分类归档页面 如何调用当前分类置顶文章?

原文链接:https://www.chenweiliang.com/cwl-982.html

WordPresss是全球最流行的建站程序,所以很多网络营销从业者都用WordPress来建站做网络推广


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分类/标签/作者页显示置顶文章,请点击以下链接查看 ▼






欢迎转载《WordPress分类归档页面 如何调用当前分类置顶文章?
陈沩亮版权所有,转载请注明出处链接:https://www.chenweiliang.com/cwl-982.html


网站地址:https://www.chenweiliang.com/



欲学更多秘技,请关注微信公众号:cwlboke

没有评论:

发表评论