WordPress教程:WooCommerce更改商城列数

更改商城列数

/**
 * WooCommerce Extra Feature
 * --------------------------
 *
 * Change product columns number on shop pages
 *
 */
function woo_product_columns_frontend() {
    global $woocommerce;
 
    https:// Default Value also used for categories and sub_categories
    $columns = 4;
 
    https:// Product List
    if ( is_product_category() ) :
        $columns = 4;
    endif;
 
    https://Related Products
    if ( is_product() ) :
        $columns = 2;
    endif;
 
    https://Cross Sells
    if ( is_checkout() ) :
        $columns = 4;
    endif;
 
  return $columns;
}
add_filter('loop_shop_columns', 'woo_product_columns_frontend');

在哪里添加此代码?

将PHP代码放在主题或子主题functions.php文件的底部。

WordPress技巧

WordPress教程:WooCommerce从商店页面中的特定类别中排除产品

2019-3-17 15:54:17

WordPress技巧

WordPress教程:禁用WooCommerce选项卡

2019-3-17 15:59:04

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索