thinkcmf笔记

1、友情链接在:模板管理-》文件列表-》设计

2、导航在:模板管理-》文件列表-》设计

3、使用portal:articles标签,需要包含:<taglib name="app\portal\taglib\Portal"/>, 多个标签用逗号分割:<taglib name="app\portal\taglib\Portal,app\product\taglib\Product"/>

4、控制器的逻辑代码很少,很多action连controller对应的方法都没有,因为thinkcmf在模板中直接嵌套了原生代码。

5、portal:article的where使用方法:

                    <div class="row m1-list">
                    <php>
                    
                    $where=[
                     'post.is_top'=>1
                    ];
                      
                    </php>
                    <portal:articles limit="3" order="post.published_time DESC" categoryIds="2" where="$where">
                        <div class="col-6 col-sm-6 col-md-4">
                            <div class="row m1-list-one">
                                <a href="{:cmf_url('portal/Article/index',array('id'=>$vo.id,'cid'=>$vo.category_id))}">
                                    <img src="{:cmf_get_image_url($vo.more.thumbnail)}" alt="{$vo.post_title}" class="img-fluid rounded">
                                </a>
                                <a href="{:cmf_url('portal/Article/index',array('id'=>$vo.id,'cid'=>$vo.category_id))}">
                                    <span>{$vo.post_title}</span>
                                </a>
                            </div>
                        </div>
                    </portal:articles>

 6、文章列表标签的使用方法(免费):文章列表标签 · ThinkCMF5开发手册 · 看云 (kancloud.cn)

 

 

 

其他参考:参考1  参考2

posted on 2024-03-25 13:24  飞哥100  阅读(33)  评论(0编辑  收藏  举报

导航