WP_Query分类术语添加了一个帖子

时间:2017-04-25 21:54:48

标签: wordpress custom-taxonomy custom-wordpress-pages

我按照不同的WP_Query使用分类法页面顺序。在每个循环的最后一个东西添加一个" post"具有来自之前帖子的页面标题和信息。非常奇怪。

我对此一无所知(我也不知道如何搜索)。谢谢你的时间。我的博士是:

      <?php
  $the_query = new WP_Query( array(
      'post_type' => 'intervencion',
      'tax_query' => array(
          array (
              'taxonomy' => 'especialidad',
              'field' => 'slug',
              'terms' => 'bariatrica_ok',
          )
      ),
  ) );

  while ( $the_query->have_posts() ) : $the_query->the_post();?>
          <?php $meta = get_post_meta(get_the_ID()); ?>
      <div class="col-lg-3 col-md-4 col-sm-6">
          <div class="ficha">
              <?php if ( has_post_thumbnail() ) { ?>
                  <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('thumb_intervenciones', array('class' => 'img-responsive')); ?></a>
              <?php } ?>
              <h2><?php echo get_the_title(); ?></h2>
              <p class="condiciones">Todo</br>incluido por:</p>
              <p class="precio"><?php echo $meta['intervenciones_precio_intervencion'][0]; ?> &euro;</p>
              <a class="ficha-btn" href="<?php the_permalink()?>">Solicitar cita</a>
          </div>
      </div>
<?php
  endwhile;
  wp_reset_postdata();
  ?>

列表底部的结果是: enter image description here

0 个答案:

没有答案