thinkcmf 配置移动端模板

发布时间:2024年01月03日

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

  'cmf_moblie_default_theme' => 'cffff_m',

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

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

文章来源:https://blog.csdn.net/qq_42074075/article/details/135365604
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。