2017-03-12 97 views

回答

0

在此简码,属性作品与变型产品和您的实际简码不能真正发挥作用为特色产品的功能是不是属性

你最好尝试使用[recent_products]简码,而不是在所有的特色产品设置一个“特色”类别(以“特色”鼻涕虫) ...

然后你可以使用简码是这样的:

[recent_products category='featured' operator='NOT IN'] 

你并不需要设置orderbyorder参数作为默认的是:

$atts = shortcode_atts(array(
    'per_page' => '12', 
    'columns' => '4', 
    'orderby' => 'date', 
    'order' => 'desc', 
    'category' => '', // Slugs 
    'operator' => 'IN' // Possible values are 'IN', 'NOT IN', 'AND'. 
), $atts, 'recent_products'); 

请参阅相关文档:WC_Class Shortcodes - Recent Products shortcode source code