首页 文章

通过WP_Query中的自定义分类术语值获取Woocommerce产品

提问于
浏览
1

我正在开发一个插件,它将被放置在我的woocommerce产品侧边栏中 . 我需要这个,给定产品ID /对象,它会找到2个产品,它具有我之前创建的相同的自定义分类 .

使用此代码,我获得了产品中使用的术语列表 "collane" is the custom taxonomy

get_the_term_list( $product->id, 'collane', '<div style="direction:rtl;">', '</div>', '' );

问题是我不知道如何获取自定义分类标识,以及如何通过我的自定义分类法过滤它 .

我已经使用WP_Query使用以下代码查找同一类别的产品:

$args = array(
'post_type'             => 'product',
'post_status'           => 'publish',
'ignore_sticky_posts'   => 1,
'posts_per_page'        => $atts['limit'],
'tax_query'             => array(
    array(
        'taxonomy'      => 'product_cat',
        'field' => 'term_id', //This is optional, as it defaults to 'term_id'
        'terms'         => $cat_id,
        'operator'      => 'IN' // Possible values are 'IN', 'NOT IN', 'AND'.
    ),
    array(
        'taxonomy'      => 'product_visibility',
        'field'         => 'slug',
        'terms'         => 'exclude-from-catalog', // Possibly 'exclude-from-search' too
        'operator'      => 'NOT IN'
    )
)
);

如何更改我的代码以获取所需的分类标识/对象,然后在我的WP_Query中使用它?

1 回答

  • 0

    您应该尝试以下 WP_Query $args ,这将允许从同一个"collane"自定义分类中获得与当前产品具有相同术语的其他2个产品 .

    我正在使用wp_get_post_terms()WordPress函数从特定的自定义分类中获取帖子(此处为“产品”自定义帖子类型)中的术语ID .

    代码:

    $taxonomy = 'collane'; // The targeted custom taxonomy
    
    // Get the terms IDs for the current product related to 'collane' custom taxonomy
    $term_ids = wp_get_post_terms( get_the_id(), $taxonomy, array('fields' => 'ids') ); // array
    
    $query = new WP_Query( $args = array(
        'post_type'             => 'product',
        'post_status'           => 'publish',
        'ignore_sticky_posts'   => 1,
        'posts_per_page'        => 2, // Limit: two products
        'post__not_in'          => array( get_the_id() ), // Excluding current product
        'tax_query'             => array( array(
            'taxonomy'      => $taxonomy,
            'field'         => 'term_id', // can be 'term_id', 'slug' or 'name'
            'terms'         => $term_ids,
        ), ),
    );
    
    // Test count post output
    echo '<p>Posts count: ' . $query->post_count . '</p>';
    
    // The WP_Query loop
    if ( $query->have_posts() ): 
        while( $query->have_posts() ): 
            $query->the_post();
    
            // Test output
            echo '<p>' . $query->post->post_title . ' (' . $query->post->ID . ')</p>';
    
        endwhile;
        wp_reset_postdata();
    endif;
    

相关问题