从 WordPress 中的特定类别获取置顶帖子
Posted
技术标签:
【中文标题】从 WordPress 中的特定类别获取置顶帖子【英文标题】:Get sticky posts from specific category in WordPress 【发布时间】:2018-07-12 09:24:37 【问题描述】:我想检查某个类别是否有置顶帖子。
为此,我在archive.php
上使用$sticky = get_option( 'sticky_posts' );
。
但它会显示博客中的所有置顶帖子。不仅来自显示的类别。 我可以添加什么来仅显示来自显示的类别或标签的粘性帖子吗?
如果有粘性帖子,我需要的是真/假。如果有粘性帖子,我需要一个带有 ID 的数组。
【问题讨论】:
希望这会有所帮助:wordpress.stackexchange.com/questions/190474/… 【参考方案1】:希望下面的代码对你有所帮助:
$paged = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1;
$sticky = get_option( 'sticky_posts' );
$args = array(
'cat' => 3,
'ignore_sticky_posts' => 0,
'post__in' => $sticky,
'paged' => $paged
);
$sticky_posts = new WP_Query( $args );
if ( $sticky_posts->have_posts() ) : while ( $sticky_posts->have_posts() ) :
$sticky_posts->the_post() );
//Loop markup here
endwhile; endif;
//IMPORTANT
wp_reset_postdata();
如需更多帮助,请查看此链接click here
【讨论】:
谢谢,我编辑了我的问题。如果有粘性帖子,我需要的是真/假。如果有粘性帖子,我需要一个带有 ID 的数组。 看这个链接希望对你有帮助developer.wordpress.org/themes/functionality/sticky-posts以上是关于从 WordPress 中的特定类别获取置顶帖子的主要内容,如果未能解决你的问题,请参考以下文章