Woocommerce - Display Featured Products at top of Category Page

前端 未结 2 1648
一向
一向 2020-12-21 21:59

I want to have a section at the top of each product category page that shows three featured products at random from that category. Beneath this would be the regular archive

2条回答
  •  清歌不尽
    2020-12-21 22:47

    Below code can help you:

        add_filter('posts_orderby', 'show_featured_products_orderby',10,2);
    function show_featured_products_orderby($order_by, $query){
      global  $wpdb ;
      if( ($query->get('post_type')=='product') && (!is_admin()) ){
        $orderby_value = ( isset( $_GET['orderby'] ) ? wc_clean( (string) $_GET['orderby'] ) : apply_filters( 'woocommerce_default_catalog_orderby', get_option( 'woocommerce_default_catalog_orderby' ) ) );
        $orderby_value_array = explode( '-', $orderby_value );
        $orderby = esc_attr( $orderby_value_array[0] );
        $order = ( !empty($orderby_value_array[1]) ? $orderby_value_array[1] : 'ASC' );
        $feture_product_id = wc_get_featured_product_ids();
        if ( is_array( $feture_product_id ) && !empty($feture_product_id) ) {
          if ( empty($order_by) ) {
            $order_by = "FIELD(" . $wpdb->posts . ".ID,'" . implode( "','", $feture_product_id ) . "') DESC ";
          } else {
            $order_by = "FIELD(" . $wpdb->posts . ".ID,'" . implode( "','", $feture_product_id ) . "') DESC, " . $order_by;
          }
        }  
      }
      return $order_by;
    }
    

    Add this code to active themes function.php file

提交回复
热议问题