从WordPress中的特定类别获取粘性帖子

时间:2018-07-12 09:24:37

标签: php wordpress loops wordpress-theming archive

我想检查某个类别是否有粘性帖子。 为此,我在$sticky = get_option( 'sticky_posts' );上使用了archive.php

但是它显示了博客中的所有粘性帖子。不仅来自显示的类别。 我可以添加任何内容以仅显示所显示类别或标签中的即时贴吗?

如果有粘性帖子,我需要的是对/错。如果有粘性的帖子,我需要一个带有ID的数组。

1 个答案:

答案 0 :(得分: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