dongsou4301 2015-06-26 19:46
浏览 44
已采纳

在子类别页面上显示wordpress子类别帖子

I'm trying to get a WP function to work properly.

I want it to display the posts from the selected sub-category page, for example, when navigating to: www.example.com/category/fruits/apples/, display all custom posts under "apples" category. I want to do this dynamically, so that no matter the number of sub-categories (apples, oranges, pears etc) this works every time the sub-category page is visited.

The following is my current function, but I don't know if the get_query_var('cat') is implemented properly. Currently, when I visit the sub-category page, it displays ALL posts with the parent category "fruits", but I want it to display just the "apples" posts.

<?php

$cat = get_query_var('cat'); // get current category
$yourcat = get_category($cat);

// only display product CPT posts 
query_posts( array( 'post_type' => 'products' ) ); 

if ( have_posts() ) : while ( have_posts() ) : the_post();
?>
  <div class="col-sm-3">
    <div class="thumbnail">
        <div class="more"><a href="<?php the_permalink(); ?>"><span class="fa fa-location-arrow"></span></a></div>
        <?php the_post_thumbnail(); ?>
        <div class="caption">
            <a href="<?php the_permalink(); ?>" class="btn btn-default" role="button"><?php the_title(); ?></a>
        </div>
      </div>
  </div>
<?php endwhile; endif; wp_reset_query(); ?>
  • 写回答

1条回答 默认 最新

  • dongyong3590 2015-06-27 20:21
    关注

    added $cat variable to query_posts array to get the current selected category posts.

    $category = get_category( get_query_var( 'cat' ) );
    $cat = $category->cat_name;
    
    // only display product CPT
    posts query_posts( array( 'post_type' => 'products', 'category_name' => $cat ) );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部