店面主题:将目录添加到最近的产品部分

时间:2021-11-21 作者:Younes.D

我想修改“最近的产品”部分的店面主题,以便只包含一个特定的类别。我试过了:

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;
 }
但没有成功

1 个回复
最合适的回答,由SO网友:Younes.D 整理而成

我找到了,问题解决了:解决方案:

add_filter( \'storefront_recent_products_args\',\'my_custom_storefront_category_args\' );
function my_custom_storefront_category_args( $args ){ 
    $args = array( 
    \'limit\' => 6, 
    \'columns\' => 3, 
    \'orderby\' => \'date\', 
    \'order\' => \'desc\', 
    \'category\' => \'your-cat-slug\', 
    \'cat_operator\' => \'AND\' 
    );

    return $args; 
}

相关推荐

Child-theme breaks site

所以,我有一个子主题,里面除了所需的CSS文件之外什么都没有。一旦我激活了这个儿童主题,我的整个网站就关闭了。最后我有两个问题:激活一个只有CSS的子主题怎么能破坏我的网站</我怎样才能回到我原来的主题</这些是网站给我的错误:Warning: require_once(/wp-content/themes/interio_child/admin/options-framework.php) [function.require-once]: 无法打开流:中没有此类文件或目录/wp-c