ecshop 调用指定文章栏目 子栏目
PHP页面加上
function get_child_catc($parent_id=0)
PHP页面加上
function get_child_catc($parent_id=0)
{
$sql="SELECT * FROM ".$GLOBALS['ecs']->table('article_cat')." WHERE parent_id = '$parent_id' ";
return $GLOBALS['db']->getAll($sql);
}
$smarty->assign('childcat', get_child_catc($cat_id));
模板代码加上
$smarty->assign('childcat', get_child_catc($cat_id));
模板代码加上
<!--{foreach from=$childcat item=cat name=childcat}-->
<li {if $cat.id eq $cat_id} class="current"{/if}><a href="article_cat?id={$cat.cat_id}" >{$cat.cat_name|escape:html} </a> </li>
<!--{/foreach}-->