0

我创建了一个自定义帖子类型和一个自定义分类法。

我不知道如何在taxonomy-{taxonomy}.php模板上对循环进行编程,使其仅显示与某人所在的当前分类存档页面相对应的帖子。<domain>taxonomy/term

我创建了一个基于分类进行过滤的循环,但是,它不是动态的,该循环适用于我对其编程的自定义分类的任何术语。

我希望有一种方法让它知道用户正在使用哪个分类档案(基于 url?),并且只显示来自该分类的帖子,而无需为每个分类术语创建模板。

当前循环:

<?php
  $args = array( 'post_type' => 'event', 'type' => 'party', 'post_status' => 'future', 'posts_per_page' => 50, 'order' => 'ASC' );
  $loop = new WP_Query( $args );
  while ( $loop->have_posts() ) : $loop->the_post();?>
  <div class="event-item">
    <div class="event-meta gold">
      <div class="event-date"><?php the_time('M d'); ?></div>
      <div class="event-time"><?php the_time('g:i A'); ?></div>
    </div>
    <div class="event-title">
      <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
          <?php the_title(); ?>
      </a>
    </div>
<div class="entrytext">
    <?php the_content(); ?>
</div>
  </div>
<?php endwhile; ?>

总结:将聚会替换为可以根据用户所在页面进行更改的东西会很壮观!

4

1 回答 1

1

尝试使用get_query_var('tag'),其中 'tag' 是您的自定义分类的名称,并将该查询的结果添加到您的 $args。

我用它来创建一个标签存档页面,该页面根据我当前所在的标签更改显示。

于 2012-01-21T21:49:41.447 回答