dedecms文章页的首页、末页、上一页、下一页的调用标签。谢啦哦
Tags: dedecms, dedecms标签, dedecms模板dedecms的Field 标记在封面模板、列表模板、文档模板的使用频率很高,实用。主要用来获得特定栏目或档案的字段值及常用的环境变量值,其用法比较灵活。可以直接展示数据, 如调用position,得到栏目一 > 栏目二” 这样形式的链接;或者,调用title得到当前文档的标题。一:Field标签使用说明
Arclist 标记的使用范围是:封面模板(如:index_articlehtm)、列表模板(如:list_articlehtm)、文档模板 (如:article_articlehtm)。 即对应templets\default\文件夹下的index_识别IDhtm模板、list_识别IDhtm模板、article_识别 IDhtm模板。
注意: 封面模板与列表模板是有区别的,但调用Field 标记可以相同; 封面模板有不同的类型,我们最常用的是文章模板(index_articlehtm),其它的还有模板 (index_imagehtm),简介模板(index_infohtm),软件模板(index_softhtm)等等,这些模板调用 Field 标记的道理都是一样的。
二、Field标签测试实例新建一个文件(如:testindexhtml)放到templets/default下,然后将列表栏目的模板文件指定为新建的文件(testindexhtml)然后更新相应栏目的HMTL,点击主页上的相应栏目即可显示相应的调用信息。testindexhtml文件的Field 标记调用代码: <font color="red">调用position标记,得到:栏目一 > 栏目二” 这样形式的链接:</font>{dede:field name='position'/}<br/> <font color="red">插件路径:</font>{dede:field name='phpurl'/}<br/> <font color="red">模板路径:</font>{dede:field name='templeturl'/}<br/> <font color="red">版权信息:</font>{dede:field name='powerby'/}<br/> <font color="red">主页路径:</font>{dede:field name='indexurl'/}<br/> <font color="red">主页名称:</font>{dede:field name='indexname'/}<br/> <font color="red">站点名称:</font>{dede:field name='webname'/}<br/> <font color="red">所在栏目:</font>{dede:field name='title'/}<br/>
pagenext|上下篇标签
标签名称:pagenext
功能说明:表示获取文档“上一篇/下一篇”的链接列表
适用范围:仅内容模板
article_htm
基本语法:
{dede:prenext/}
相关函数:
文件\include\arcarchivesclassphp第634行
//获取上一篇,下一篇链接
function GetPreNext($gtype='')
参数说明:
get
获取连接类型(5x以后版本),get='' 同V4显示横排的上下页连接, get='pre' 上一篇的连接 get='next' 下一篇连接
注:此标记默认为横向排列,如果你想用竖向排列,可以用
{dede:prenext
function="str_replace(' 下一篇:','<''br''
/>下一篇:',@me)"/}
表示
使用实例:
用于显示内容页的上一页、下一页的相关文档
我们可以在内容页模板页面中查看相关代码,这里以文章内容页模板\templets\default\article_articlehtm为例,我们查看164行处的相关代码
<div
class="context">
<ul>
<li>{dede:prenext
get='pre'/}</li>
<li>{dede:prenext
get='next'/}</li>
</ul>
</div><!-- /context
-->
一般是这样的代码:
<div class="dede_pages">
<ul class="pagelist">
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="5"/}
</ul>
</div>
你可以在相应的css文件中,默认是:模版文件夹/default/style/pagecss
对应修改一下就可以了。
滑动效果是:dede_pages ul li a:hover
就是链接:a的hover事件。
您好,织梦云模版很高兴为您解答:
您可以用织梦的autoindex标签实现。
{dede:arclist row=5}
<h2 class="headline-[field:global name='autoindex'/]">[field:title/]</h2>
{/dede:arclist}
{dede:fieldtitle/}这个是在内容页调用标题[field:title/] 这是在列表中调用标题 把头部复制一个,然后把<title> http://wwwqyuefcom </tiltle> 之间改成代码<title>{dede:fieldtitle/}_{dede:globalcfg_webname/}</title> 或者把代码单独写在文章页模版 首页的标题在后台可以自己填写
0条评论