Wordpress WP_Query - 基于分类法的相关帖子

时间:2014-01-13 09:51:47

标签: php wordpress post taxonomy

我正在尝试构建一个WP_Query,它循环来自某个自定义帖子类型的帖子(在本例中为current-products),并返回所有使用相同分类标记的帖子(在这种情况下,相同)分类作为显示的职位)

这是我到目前为止所做的:

<ul>
<?php query_posts('post_type=current-products');
if (have_posts()) : while (have_posts()) : the_post(); ?>

    <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>

<?php endwhile; endif; ?>
<?php wp_reset_query(); ?>
</ul>

1 个答案:

答案 0 :(得分:0)

试试这个:

$post_terms = wp_get_object_terms($post->ID, 'your-taxonomy', array('fields'=>'ids'));

$args = array(
    'post_type' => 'current-products',
    'tax_query' => array(
        array(
            'taxonomy' => 'your-taxonomy',
            'field' => 'id',
            'terms' => $post_terms
        )
    )
);
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) {
        echo '<ul>';
    while ( $the_query->have_posts() ) {
        $the_query->the_post();
        ?>
                    <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
            <?php
    }
        echo '</ul>';
} else {
    // no posts found
}
wp_reset_postdata();

您应该使用您的分类类型替换代码中your-taxonomy的出现次序,以使此代码生效。