显示符合分类的自定义帖子类型列表

时间:2016-02-16 作者:Theo Leep

我试图在Wordpress侧边栏中添加一个片段,其中显示符合条件的帖子链接列表。

我正在使用自定义帖子类型cars 和分类法car-types 我想显示链接列表cars 这是car-types 分类学

简而言之。显示链接列表,其中post是名为cars 以及car-types 分类法是SUV

请问有没有办法做到这一点?

1 个回复
最合适的回答,由SO网友:Andrew Herder 整理而成

希望这会有所帮助
https://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters

<?php
$args = array
(
    \'post_type\' => \'cars\',
    \'tax_query\' => array
     (
        array
        (
            \'taxonomy\' => \'car-types\',
            \'field\'    => \'slug\', //or name or term_id
            \'terms\'    => \'suv\',
        )
     )
);
$car_query = new WP_Query($args);?>
<?php if($car_query->have_posts()):?>
    <ul>
        <?php while($car_query->have_posts()): $car_query->the_post();?>
            <li>
                <a href="<?php the_permalink();?>"><?php the_title();?></a>
            </li>
        <?php endwhile; wp_reset_postdata(); ?>
    </ul>
<?php endif;?>

相关推荐