我现在有3个类别(音乐、歌曲、jpop),我想从相关帖子中删除歌曲和jpop类别。
我该怎么做?
if ( get_theme_mod(‘related-posts-on’, true) ) :
// Get the taxonomy terms of the current page for the specified taxonomy.
$terms = wp_get_post_terms( get_the_ID(), ‘category’, array( ‘fields’ => ‘ids’ ) );
// Bail if the term empty.
if ( empty( $terms ) ) {
return;
}
// Posts query arguments.
$query = array(
‘post__not_in’ => array( get_the_ID() ),
‘tax_query’ => array(
array(
‘taxonomy’ => ‘category’,
‘field’ => ‘id’,
‘terms’ => $terms,
‘operator’ => ‘IN’
)
),
‘posts_per_page’ => 6,
‘post_type’ => ‘post’,
);