约克内容管理系统/内容调用Content
来自站长百科
约克内容管理系统 | 安装与升级 | 系统使用 | 模板制作及使用 | YorkCMS流程概要体系 |
该调用标签可实现对已发布的特定文章内容的调用
例1. 调用一篇文章
<CMS action="CONTENT" return="var" IndexID="68" /> <!--调用文章IndexID为68的记录--> 标题: 简介: 内容: 链接: http://cms.yorknet.cn/help/mobandyshm/index.html </loop>
例2. 调用多篇文章
CMS action="CONTENT" return="List" IndexID="1,2,3,4" /> <!--调用文章IndexID为 1,2,3,4的记录--> <loop name="List" var="var" key="key" > 标题: 简介: 内容: 链接: http://cms.yorknet.cn/help/mobandyshm/index.html </loop>
例3. 调用多篇其他结点内容
<CMS action="CONTENT" return="List" IndexID="{$OtherNodeContent}" LoopMode="1" /> <!--调用文章IndexID来自$OtherNodeContent这个变量,例如$OtherNodeContent="1,2,18,16",此时必须使用LoopMode="1"以免返回值只有一条时出错--> <loop name="List" var="var" key="key" > 标题: 简介: 内容: 链接: http://cms.yorknet.cn/help/mobandyshm/index.html </loop>
例4. 调用自定义相关文章
<ul> <!--如果存在自定义相关文章,则调用之--> <if test="!empty($CustomLinks)"> <CMS action="CONTENT" return="List" IndexID="{$CustomLinks}" LoopMode="1" /> <!--调用自定义相关文章,此时必须使用LoopMode="1"以免返回值只有一条时出错--> <else> <!--自定义相关文章为空,则使用SEARCH调用根据文章设置的关键字自动获取相关文章列表--> <CMS action="SEARCH" return="List" NodeID="{$NodeID}" Field="Keywords" Keywords="{$Keywords}" Num="10" Separator="," IgnoreContentID="{$ContentID}" /> </if> <!--开始显示相关文章--> <loop name="List" var="var" key="key" > <!--为了便于排版,下面“if”部分指定自定义相关文章的条数: 如果不到10条,有多少条就显示多少条;如果多于10条的,就只显示10条--> <if test="key<10" > </if> <li> ·<a href="http://cms.yorknet.cn/help/mobandyshm/index.html" title=""> </a> </li> </LOOP> </ul>
参考来源[ ]
YorkCMS使用手册导航 | |||||||
---|---|---|---|---|---|---|---|
|