我创建了一个短代码,用于通过以下查询按类别显示产品:
$atts = shortcode_atts( array (
'type' => 'product',
'posts' => -1,
'category' => '',
), $atts, 'list_products' );
$query = new WP_Query( array(
'post_type' => $atts['type'],
'posts_per_page' => $atts['posts'],
'tax_query' => array( array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => $atts['category'],
) ),
) );
这很好,但是当我使用自定义排序shown here
对产品进行排序时,我尝试使用order by属性我添加了:'orderby' => 'modified',
和尝试来自here的其他人。
两个问题:
使用自定义排序时,我需要使用哪个属性进行排序
和
添加到上述查询中后,我该怎么做才能使我的orderby
属性起作用?因为我使用过的那个属性值始终按发布的降序排序。
答案 0 :(得分:2)
在对Woocommerce产品使用自定义排序时,它会在UIViewController
列下的wp_posts
数据库表中为每种产品设置一些值。
然后,您只需要在menu_order
中添加'orderby' => 'menu_order',
,在代码中:
WP_Query
它将起作用(默认情况下,$atts = shortcode_atts( array (
'type' => 'product',
'posts' => -1,
'category' => '',
), $atts, 'list_products' );
$query = new WP_Query( array(
'post_type' => $atts['type'],
'posts_per_page' => $atts['posts'],
'tax_query' => array( array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => $atts['category'],
) ),
'orderby' => 'menu_order',
// 'order' => 'DESC',
) );
排序参数通常设置为order
)。