dedecms 多行标题
后台添加专题文章加统一的属性(如给专题文章flag='s')。然后在调用文章的时候,写上 noflag='s' 基本上就分离开了。代码如下
{dede:list pagesize='50' titlelen='60' noflag='s'}
<li><a href="[field:arcurl /]" target="_blank">·[field:title /]</a><span>[[field:pubdate function="GetDateTimeMK(@me)"/]]</span></li>
[field:global name='autoindex' runphp="yes"]
if(@me%5==0) @me="
<div class='mylist'></div>
";
else @me="";
[/field:global]
{/dede:list}
注意,前提是要给专题文章属性添加上属性's',及滚动属性。
您好,朋友。跟版网团队很高兴为您解答:
现象是发布英文标题没问题,发布中文会提示“标题不能为空”
因为htmlspecialchars在php54默认为utf8编码,
gbk编码字符串经 htmlspecialchars 转义后的中文字符串为空,也就是标题为空。
所以给htmlspecialchars添加ENT_COMPAT ,’GB2312′参数修改编码默认值。
具体方法有两种:
1在/include/commonfuncphp中任意位置添加函数
function gbkhtmlspecialchars($str)
{
return htmlspecialchars($str, ENT_COMPAT ,’ISO-8859-1′);
}
2如果空间商可以切换php版本,请将php版本切换为php52就不会有此问题了。
希望我的回答能够帮到你!
介绍了织梦DEDECMS实现多行导航菜单栏的实现方法。
用PHOTOSHOP更改成你喜欢的导航栏样式。最简单偷懒的方法是打开这个然后选中底下那一段大约33象素的图,重新生成一个33象素的即可。或者稍微改下颜色什么的,随你的想象去改。同时注意更改header_hoverpng这个,颜色或样式要和上图对应。
0条评论