woocommerce店面,不包括主页上的类别

时间:2018-03-16 17:44:44

标签: php wordpress woocommerce custom-taxonomy storefront

在店面主页模板上显示3个类别。我可以改变一些方面,例如隐藏空和订单。我想要做的是包括或排除特定类别,可能是他们的id。

function my_edit_storefront_category( $args ) {
    $args['number'] = 10; // works
    $args['exclude'] = "11,22,33"; // doesn't work
    $args['include'] = array(11,22,33); // doesn't work either
    return $args;
}
add_filter('storefront_product_categories_shortcode_args','my_edit_storefront_category' );

1 个答案:

答案 0 :(得分:2)

店面主页模板使用woocommerce' product_categories'短代码。这有一组有限的args,其中一些命名有点异常。没有排除arg。您可以使用' ID&ID来包含ID类别。 arg not' include'。

df = pd.DataFrame.from_dict([data1,data2])