admin管理员组文章数量:1401176
I have a problem.
<div class="list">
<?php
$categories = get_the_category();
$category_id = $categories[0]->cat_ID;
$args = array(
'posts_per_page' => -1,
'offset' => 0,
'orderby' => 'date',
'order' => 'ASC',
'cat' => $category_id
);
$products = get_posts( $args );
?>
<?php foreach ( $products as $post ) : setup_postdata( $post ); ?>
<div class="list__item">
<a href="<?php the_permalink(); ?>">
<figure>
<img src="<?php the_post_thumbnail_url('thumbnails--products'); ?>" alt="">
</figure>
<h3><?php the_title(); ?></h3>
</a>
</div>
<?php endforeach; wp_reset_postdata(); ?>
</div>
If I understand correctly, now I should display posts from the category I am currently in because I am retrieving her ID, but posts from the main category Posts are displayed.
I have a problem.
<div class="list">
<?php
$categories = get_the_category();
$category_id = $categories[0]->cat_ID;
$args = array(
'posts_per_page' => -1,
'offset' => 0,
'orderby' => 'date',
'order' => 'ASC',
'cat' => $category_id
);
$products = get_posts( $args );
?>
<?php foreach ( $products as $post ) : setup_postdata( $post ); ?>
<div class="list__item">
<a href="<?php the_permalink(); ?>">
<figure>
<img src="<?php the_post_thumbnail_url('thumbnails--products'); ?>" alt="">
</figure>
<h3><?php the_title(); ?></h3>
</a>
</div>
<?php endforeach; wp_reset_postdata(); ?>
</div>
If I understand correctly, now I should display posts from the category I am currently in because I am retrieving her ID, but posts from the main category Posts are displayed.
Share Improve this question asked Feb 7, 2020 at 12:14 Piotr WawrzyniakPiotr Wawrzyniak 132 bronze badges1 Answer
Reset to default 0get_the_category
returns posts only with the default taxonomy "category", if you are trying to display posts from a custom registered taxonomy you should use get_the_terms
Also get_posts argument category doesn't support custom taxonomies, you should use WP_Query's Taxonomy Query mostly.
本文标签: Problem with displaying posts in the CPT category
版权声明:本文标题:Problem with displaying posts in the CPT category 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744769125a2624227.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论