首页 > 解决方案 > 如何在 wordpress 中使用 tax_query 显示自定义循环中使用的术语名称

问题描述

我想根据 tax_query 中使用的术语 slug 动态显示“术语名称”。

我需要值 Novedades,它是具有 slug 'novedades' 的术语的名称,我在'terms' => 'novedades'.

它应该显示在 h2 标签中。我怎样才能抓住这个价值?

我的代码:

<?php
    $args = array(
        'post_type' => 'cuadros',
        'post_per_page' => 4,
        'tax_query' => array(
            array(
                'taxonomy' => 'tipo_de_cuadro',
                'field' => 'slug',
                'terms' => 'novedades'
            ),
        ),
    );
    
    $postQuery = new WP_Query($args);
?>

<?php if ( $postQuery->have_posts()) : ?>

<div class="product-carousel">

     <h2> x x x x x x x x x x x x x x </h2>

     <div class="owl-carousel">

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

         <div class="product-carousel__item">
             <img src="<?php the_post_thumbnail_url(); ?>" alt="">
             <h3><?php the_title(); ?></h3>
             <p class="producr-carousel__precio">desde $595</p>
             <a href="<?php the_permalink(); ?>" class="producr-carousel__button">Detalles</a>
         </div>
        
     <?php endwhile; wp_reset_postdata(); ?>

    </div>
</div>

<?php endif; ?>

标签: wordpresswordpress-theming

解决方案


有几种方法可以做到这一点,但鉴于您知道 slug 是什么,那么最简单的方法可能是使用get_term_byfunction

您可以使用 slug 获取所有术语详细信息,get_term_by包括名称。这与您的 WP_Query 是分开的,因此您可以在循环之外使用它。

<?php
// set up variables for the slug & taxonomy - then this can all be changed dynamically if you need to
$term_slug = "novedades";
$term_taxonomy = "tipo_de_cuadro";

// Pass the slug & taxonomy to get_term_by to get all the term details
$term = get_term_by('slug', $term_slug, $term_taxonomy); 
$term_name = $term->name;    // get the name from the term

$args = array(
    'post_type' => 'cuadros',
    'post_per_page' => 4,
    'tax_query' => array(
        array(
            'taxonomy' => $term_taxonomy,
            'field' => 'slug',
            'terms' => $term_slug
        ),
    ),
);

$postQuery = new WP_Query($args);
if ( $postQuery->have_posts()) : ?>

    <div class="product-carousel">

        <!-- you can use your term_name variable here  before you set the_post -->
        <h2><?php echo $term_name; ?></h2>
        <!-- [do stuff....] -->
    </div>
<?php endif; ?>

推荐阅读