`
piperzero
  • 浏览: 3470767 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
文章分类
社区版块
存档分类
最新评论

织梦(dedecms)仿站教程第十五讲—全站图片调用

 
阅读更多
这一讲的内容和上一讲差不多,略有不同。主要是上一讲是特定栏目的图片内容调用,本讲主要是全站的图片内容调用。
先看下拳击在线的全站图片代码:
  1. <DIV class=main_c>
  2. <DIV class=title3>
  3. <H3>推荐新闻</H3></DIV>
  4. <DIV class=recommend>
  5. <DIV class=rec_img><A href="http://www.quanji.cn/news/1/6041.html" target=_blank><IMG alt=小克里琴科VS海耶称重仪式 src="{dede:global.cfg_templets_skin/}/images/smallfa5ad63b4574550fac1912986e09b8e51309541311.jpg"></A></DIV>
  6. <DIV class=rec_word>
  7. <UL>
  8. <LI>
  9. <H4><A title=小克里琴科VS海耶称重仪式 href="http://www.quanji.cn/news/1/6041.html" target=_blank>小克里琴科VS海耶称重仪式</A></H4></LI>
  10. <LI class=word>北京时间2011年7月1日,2011年WBA世界拳王争霸赛进行赛前称重,多位拳坛顶尖级人物现身仪式现场。图为小克里琴科VS大卫.海... </LI>
  11. </UL>
  12. </DIV>
  13. </DIV>
  14. <DIV class=recommend>
  15. <DIV class=rec_img><A href="http://www.quanji.cn/news/1/6038.html" target=_blank><IMG alt=梅威瑟VS奥提兹洛杉矶之唇舌战 src="{dede:global.cfg_templets_skin/}/images/smallfef0b5dcd16ced8f235ba5b7ac2bf0dd.jpg"></A></DIV>
  16. <DIV class=rec_word>
  17. <UL>
  18. <LI>
  19. <H4><A title=梅威瑟VS奥提兹洛杉矶之唇舌战 href="http://www.quanji.cn/news/1/6038.html" target=_blank>梅威瑟VS奥提兹洛杉矶之唇舌战</A></H4></LI>
  20. <LI class=word>在今天的早些时候,P4P冠军弗罗伊德.梅威瑟与WBC次中量级冠军维克多.奥提兹在洛杉矶召开了一次新闻发布会,正式宣布他们将在9月17日的米... </LI>
  21. </UL>
  22. </DIV>
  23. </DIV>
  24. <DIV class=recommend>
  25. <DIV class=rec_img><A href="http://www.quanji.cn/news/1/6004.html" target=_blank><IMG alt=梅威瑟VS奥提兹纽约召开新闻发布会 src="{dede:global.cfg_templets_skin/}/images/small0a72185ad918b79b8177baff67a7d8f51309318211.jpg"></A></DIV>
  26. <DIV class=rec_word>
  27. <UL>
  28. <LI>
  29. <H4><A title=梅威瑟VS奥提兹纽约召开新闻发布会 href="http://www.quanji.cn/news/1/6004.html" target=_blank>梅威瑟VS奥提兹纽约召开新闻发布会</A></H4></LI>
  30. <LI class=word>28号早些时候,保持不败的P4P冠军弗罗伊德.梅威瑟与WBC次中量级冠军维克多.奥提兹在纽约城的胡德逊剧场召开了一场新闻发布会,正式宣布... </LI>
  31. </UL>
  32. </DIV>
  33. </DIV>
  34. </DIV>
为了方便写教程,我删除了几行代码,默认上调用出11个图片,我删除了8个。以便于代码显示。
将上面的代码修改为织梦的调用代码:
  1. <DIV class=main_c>
  2. <DIV class=title3>
  3. <H3>推荐新闻</H3></DIV>
  4. {dede:arclist row='11' titlelen='30' type='image.' infolen='100'}
  5. <DIV class=recommend>
  6. <DIV class=rec_img><A href="[field:arcurl/]" target=_blank><IMG alt=[field:title/] src="[field:litpic/]"></A></DIV>
  7. <DIV class=rec_word>
  8. <UL>
  9. <LI>
  10. <H4><A title=[field:title/] href="[field:arcurl/]" target=_blank>[field:title/]</A></H4></LI>
  11. <LI class=word>[field:infos/]...</LI>
  12. </UL>
  13. </DIV>
  14. </DIV>
  15. {/dede:arclist}
  16. </DIV>
代码解释:
row='11' 调用11个图片文章
titlelen='30' 标题长度30字节
type='image.' 有缩略图的内容
infolen='100' 简介的长度
我们查看下前台演示:
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics