Fixed get_catalog_ordering_args call, moved to instance

This commit is contained in:
Coen Jacobs 2012-11-12 11:59:40 +01:00
parent fde3ba05bd
commit 8832cf5b49
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ include_once('shortcode-thankyou.php');
* @return string * @return string
*/ */
function woocommerce_product_category( $atts ){ function woocommerce_product_category( $atts ){
global $woocommerce_loop; global $woocommerce, $woocommerce_loop;
if ( empty( $atts ) ) return; if ( empty( $atts ) ) return;
@ -56,7 +56,7 @@ function woocommerce_product_category( $atts ){
if ( ! $category ) return; if ( ! $category ) return;
$ordering_args = get_catalog_ordering_args( $orderby, $order ); $ordering_args = $woocommerce->query->get_catalog_ordering_args( $orderby, $order );
$args = array( $args = array(
'post_type' => 'product', 'post_type' => 'product',