webstermobile
Fork me on GitHub
个人博客

ecshop不同文章分类 不同文章详情页模板

修改article.php

 1 <?php
 2 if(isset($article) && $article['cat_id'] > 2 && $article['cat_id'] <>13)
 3 {
 4     $smarty->display('article.dwt', $cache_id);
 5 }
 6 elseif($article['cat_id'] == 13)
 7 {
 8     $smarty->display('article13.dwt', $cache_id);
 9     }
10 else
11 {
12     $smarty->display('article_pro.dwt', $cache_id);
13 }
14 ?>

 

posted @ 2015-01-15 15:28  wpindesign  阅读(254)  评论(0编辑  收藏  举报