php 显示相同分类中的相关自定义帖子 - 仅在单页上显示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 显示相同分类中的相关自定义帖子 - 仅在单页上显示相关的知识,希望对你有一定的参考价值。
<?php
$custom_taxterms = wp_get_object_terms( $post->ID, 'product-categories', array('fields' => 'ids') );
// arguments
$args = array(
'post_type' => 'products',
'post_status' => 'publish',
'posts_per_page' => 3, // you may edit this number
'orderby' => 'rand',
'tax_query' => array(
array(
'taxonomy' => 'product-categories',
'field' => 'id',
'terms' => $custom_taxterms
)
),
'post__not_in' => array ($post->ID),
);
$related_items = new WP_Query( $args );
// loop over query
if ($related_items->have_posts()) :
echo '<ul>';
while ( $related_items->have_posts() ) : $related_items->the_post();
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php
endwhile;
echo '</ul>';
endif;
// Reset Post Data
wp_reset_postdata();
?>
以上是关于php 显示相同分类中的相关自定义帖子 - 仅在单页上显示的主要内容,如果未能解决你的问题,请参考以下文章
无法获取自定义分类存档页面以显示帖子
php 在归档页面上显示自定义帖子类型的所有自定义分类
查询ACF在自定义分类模板中的WP_Query期间发布对象
自定义帖子类型和分类法使用相同的 slug 和重写
具有相同分类术语中的下一个和上一个帖子的自定义帖子类型
在 WordPress 中显示当前的帖子自定义分类