This commit is contained in:
Mike Jolley 2012-11-14 10:28:11 +00:00
parent d3068c2bef
commit f031e2e11b
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ include_once('shortcode-thankyou.php');
* @return string
*/
function woocommerce_product_category( $atts ){
global $woocommerce_loop;
global $woocommerce_loop, $woocommerce;
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',