尝试编辑WoCommerce up-sells.php文件,让它按日期订购Up-Sells(desc)
$args = array(
'post_type' => 'product',
'ignore_sticky_posts' => 1,
'no_found_rows' => 1,
'posts_per_page' => $posts_per_page,
'orderby' => 'date',
'order' => 'desc',
'post__in' => $upsells,
'post__not_in' => array( $product->id ),
'meta_query' => $meta_query
);
但似乎没有正常工作。任何想法?
更新:实际上,此解决方案有效。