如何获取自定义帖子类别的URL?

时间:2022-01-05 作者:ayahuascan

我创建了一个带有类别的自定义帖子类型。如何获取URL以仅显示该自定义帖子类型的specyfic类别中的帖子?

1 个回复
SO网友:NickFMC

我不确定您是否正在查找分类查询。。。或者一种获取条款的方法,这些解决方案中是否有一个能回答您的问题。请不要投反对票,因为我的信息非常有限,在这里猜测你需要什么。

<?php
  $args = array(
    \'post_type\' => \'post-type\',
    \'posts_per_page\' => 5,
    \'tax_query\' => array(
      array(
        \'taxonomy\' => \'taxname_tax\',
        \'field\' => \'slug\',
        \'terms\' => \'term-to-query\'
        )
      )
    );
  $listing_query = new WP_Query($args);
?>

<?php if ( $listing_query->have_posts() ) : while ( $listing_query->have_posts() ) : $listing_query->the_post(); ?>

  <?php the_title(); ?>

<?php endwhile; endif; // end of taxonomy query loop. ?>
<?php wp_reset_postdata(); ?>



// or a taxonomy lookup
<?php $terms = get_the_terms( $post->ID, \'taxonamy_tax\' ); ?>
<?php foreach( $terms as $term ) echo $term->slug; ?>
 

相关推荐