我想修改“最近的产品”部分的店面主题,以便只包含一个特定的类别。我试过了:
add_filter( \'storefront_recent_products_args\', \'my_custom_storefront_category_args\' );
function my_custom_storefront_category_args( $args ){
$args = array(
\'limit\' => 8,
\'columns\' => 4,
\'category__in\' => array (\'35\')
);
return $args;
}
但没有成功