dedecms列表页调用 仿站时出现了小问题
您好,朋友,很高兴为您解答:
请用以下代码测试:
{dede:fieldpic1 runphp=yes}if(@me==""){@me="<img src='/uploads/pictures/pic1jpg' />";}else {@me=@me;}{/dede:fieldpic1}
希望我的回答能够帮到您!
到后台页面看文档中有没有内容,然后再去数据表中看看有没有文章内容。
如果都没有文章内容,那应该是你的服务器php版本高于54,然后你用的是dedecms-gbk的编码,你用dede-utf8的程序就可以了,或者将服务器的php版本改成53。
如果有文章内容而前台的页面中没有,那就是你调用文章内容的代码写错了,去模板文件中检查一下。
首先说一下标签调用步骤:
1、标签调用标签替换内容为<ul class=s-pro-ul>和</ul>之间的内容,因为两者里面都是循环调用的单条内容即<li>和</li>之间的内容。
2、标签替换内容为单条<li>和</li>之间的内容
3、替换代码为
<div class=pro-scroll><ul class=s-pro-ul>
{dede:arclist typeid='12' row='4' titlelen='30' imgwidth='410' imgheight='310' }
<li>
<div class="con">
<div class="front">[field:image/]</div>
<div class="back">
<span class="ico">
<a href="[field:arcurl/]" class="magnifer opbig"></a>
<a href="[field:arcurl/]" class="see-more"></a>
</span>
<div class="txt">
<span class="datetime">[field:pubdate function="MyDate('m-d',@me)"/]</span>
<h3>[field:title/]</h3>
</div></div></div>
</li>
</ul>
你数据库存的是的路径吧,没有人直接把存到数据库的,那样会把数据库撑爆。
把路径存到数据库字段中,比如imgurl然后用{dede:arclist addfields='imgurl' row='8' channelid='3'}
[fieldimgurl /]<br />
{/dede:arclist}
这个标签使用有两个条件
1、指定channelid 属性
2、指定要获得的字段addfields='字段1,字段2'
如果,如需帮助请追问。
0条评论