thinkcmf 配置移动端模板

1.找到tinkcmf/data/config/template.php 文件

thinkcmf 配置移动端模板_第1张图片

  'cmf_moblie_default_theme' => 'cffff_m',

2. 找到thinkcmf/vendor/thinkcmf/src/common.php

thinkcmf 配置移动端模板_第2张图片

//    $theme = config('template.cmf_default_theme');
    if (cmf_is_mobile()) {
        $theme = config('template.cmf_moblie_default_theme');
    } else {
        $theme = config('template.cmf_default_theme');
    }

你可能感兴趣的:(前端)