站长啦网站目录调用资讯一级栏目方法
一,关于新版调用资讯一级栏目的方法,二,在网站分类目录页只想调网站分类的方法;
一, <a>一级资讯标题</a> 标签a内为一级资讯栏目;
eg:在原来的
-
{#foreach from=get_categories() item=c#}
-
<a href="{#$c.cate_link#}" title="{#$c.cate_link#}">{#$c.cate_name#}</a>
- {#/foreach#}
结果如下:
-
{#foreach from=get_categories() item=c#}
-
{#if $c.cate_mod == 'article'#}
-
<a href="{#$c.cate_link#}" title="{#$c.cate_link#}">{#$c.cate_name#}</a>
-
{#/if#}
- {#/foreach#}
同理: 二 在网站分类页中,只想调网站分类栏目而不想出现资讯栏目的方法;
只要article 改为webdir 方可;
结果如下:
-
{#foreach from=get_categories() item=c#}
-
{#if $c.cate_mod == 'webdir'#}
-
<div id="catebox" class="clearfix">
-
<h2><a href="{#$c.cate_link#}" title="{#$c.cate_name#}">{#$c.cate_name#}</a> <em>({#$c.cate_postcount#})</em></h2>
-
<ul>
-
{#foreach from=get_categories($c.cate_id) item=sc#}
-
<li><a href="{#$sc.cate_link#}" title="{#$sc.cate_name#}">{#$sc.cate_name#}</a> <em>({#$sc.cate_postcount#})</em></li>
-
{#/foreach#}
-
</ul>
-
</div>
-
-
{#/if#}
- {#/foreach#}
其中,
-
<div id="catebox" class="clearfix">
-
<h2><a href="{#$c.cate_link#}" title="{#$c.cate_name#}">{#$c.cate_name#}</a> <em>({#$c.cate_postcount#})</em></h2>
-
<ul>
-
{#foreach from=get_categories($c.cate_id) item=sc#}
-
<li><a href="{#$sc.cate_link#}" title="{#$sc.cate_name#}">{#$sc.cate_name#}</a> <em>({#$sc.cate_postcount#})</em></li>
-
{#/foreach#}
-
</ul>
- </div>
为你的HTML代码,不用理会;
本文由站长啦网站目录编辑