最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

woocommerce offtopic - How can I custom order the product display?

programmeradmin3浏览0评论

I want to put this:

[products ids="17,32,12,1,57"]

And I want them to display in EXACTLY this order.

Is this possible?

I want to put this:

[products ids="17,32,12,1,57"]

And I want them to display in EXACTLY this order.

Is this possible?

Share Improve this question asked Dec 3, 2019 at 22:34 user847288user847288 211 gold badge1 silver badge4 bronze badges 0
Add a comment  | 

2 Answers 2

Reset to default 1

You can use woocommerce_shortcode_products_query filter to change orderby argument. it will set orderby as post__in in [products] shortcode query. I have tested and it is working fine for me. you can take reference from below code and adjust code as per your need. Let me know if this works for you!

add_filter( 'woocommerce_shortcode_products_query', 'woocommerce_shortcode_products_orderby_post_in' );
function woocommerce_shortcode_products_orderby_post_in( $args ) {
    if( isset( $args['orderby'] ) ) {
        $args['orderby']  = 'post__in'; 
    }
    return $args;
}

Have you tried to use the orderby="menu_order" parameter in the shortcode? You can set the menu order inside each pruduct.

发布评论

评论列表(0)

  1. 暂无评论