diff --git a/shortcodes/shortcode-init.php b/shortcodes/shortcode-init.php index c913f2659b2..66add6fae3f 100644 --- a/shortcodes/shortcode-init.php +++ b/shortcodes/shortcode-init.php @@ -42,7 +42,7 @@ include_once('shortcode-thankyou.php'); * @return string */ function woocommerce_product_category( $atts ){ - global $woocommerce_loop; + global $woocommerce, $woocommerce_loop; if ( empty( $atts ) ) return; @@ -56,7 +56,7 @@ function woocommerce_product_category( $atts ){ if ( ! $category ) return; - $ordering_args = get_catalog_ordering_args( $orderby, $order ); + $ordering_args = $woocommerce->query->get_catalog_ordering_args( $orderby, $order ); $args = array( 'post_type' => 'product',