Plugin Directory

Changeset 2700289


Ignore:
Timestamp:
03/27/2022 06:27:46 PM (4 years ago)
Author:
kitcartcommerce
Message:

Revision to 2.0.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kitcart/trunk/kitcart.php

    r2700286 r2700289  
    149149    //route
    150150    $route = 'submit-all-successful-orders';
    151     // get all successful orders
     151    // get all orders from database
    152152    $args = array(
    153153        'post_type' => 'shop_order',
    154         'post_status' => 'wc-processing',
    155154        'posts_per_page' => -1,
     155        'orderby' => 'date',
     156        'order' => 'DESC',
    156157    );
    157158    $orders = get_posts($args);
Note: See TracChangeset for help on using the changeset viewer.