我有一个Input textbox= "month(now()) - 1"
message box = 8
Input textbox= "year(now())"
message box = 2019
来拉出并显示按全局属性过滤的WooCommerce产品变体列表。这可行,但是我想按“ menu_order”自定义结果排序。
但这不适用于WP_Query
。可能是因为“ menu_order”是在产品级别设置的。
('post_type' => 'product_variation'
确实可行,但我需要各种版本)
'post_type' => 'product'
是否可以根据其父产品“ menu_order”对产品变体进行排序? 还是有另一种自定义分类产品变体的方法?
答案 0 :(得分:0)
使用the answer from this question。我设法在与其父变量产品相同的menu_order
中显示了产品变体。
注意:此代码还按产品类别(我需要)过滤结果。
在下面的函数中,我添加了ORDER by p.menu_order
,以按menu_order
对版本父ID进行排序。
function get_variation_parent_ids_from_term( $term, $taxonomy, $type ){
global $wpdb;
return $wpdb->get_col( "
SELECT DISTINCT p.ID
FROM {$wpdb->prefix}posts as p
INNER JOIN {$wpdb->prefix}posts as p2 ON p2.post_parent = p.ID
INNER JOIN {$wpdb->prefix}term_relationships as tr ON p.ID = tr.object_id
INNER JOIN {$wpdb->prefix}term_taxonomy as tt ON tr.term_taxonomy_id = tt.term_taxonomy_id
INNER JOIN {$wpdb->prefix}terms as t ON tt.term_id = t.term_id
WHERE p.post_type = 'product'
AND p.post_status = 'publish'
AND p2.post_status = 'publish'
AND tt.taxonomy = '$taxonomy'
AND t.$type = '$term'
ORDER by p.menu_order
" );
}
然后,我使用此排序顺序按其父产品对product_variations进行排序。使用'orderby' => 'post_parent__in'
使用post_parent__in
中给出的相同顺序。
$cat_name = 't-shirt'; // Product category name
$wc_query = new WP_Query( array(
'post_type' => 'product_variation',
'posts_per_page' => -1,
'numberposts' => -1,
'post_status' => 'publish',
'meta_query' => array( array(
'key' => 'attribute_pa_color',
'value' => 'blue',
) ),
'post_parent__in' => get_variation_parent_ids_from_term( $cat_name, 'product_cat', 'name' ),
'orderby' => 'post_parent__in', //orderby = same order as their parent products
) );
可能对其他人有用。