在 WordPress 查询中使用元值作为分类术语

问题描述 投票:0回答:1

我需要使用自定义元动态更改分类术语。下面是我从哪里开始......对我来说有意义,但不起作用。

<?php
$dynamic = rwmb_meta( $post->ID, blr_queryslug, true );


$args = array(
'posts_per_page' => -1,
'tax_query' => array(
    'relation' => 'AND',
    array(
        'taxonomy' => 'product_cat',
        'field' => 'slug',
        'terms' => 'music'
    ),
    array(
        'taxonomy' => 'product_cat',
        'field' => 'slug',
        'terms' => '$dynamic'
    )
    ),
    'post_type' => 'product'
  );
$the_query = new WP_Query( $args );
// The Loop
while ( $the_query->have_posts() ) {
$the_query->the_post();
woocommerce_get_template_part( 'content', 'product' );
}
wp_reset_postdata();
?>
wordpress taxonomy taxonomy-terms
1个回答
0
投票

改变

    'terms' => '$dynamic'

    'terms' => $dynamic

PHP 不会替换单引号内的变量。

© www.soinside.com 2019 - 2024. All rights reserved.