织梦
显示序号
field:global runphp='yes' name=autoindex][/field:global]
简单的调用
{dede:sql sql="select * from dede_diyform7 where ifcheck=1 limit 1,4"}
{/dede:sql}
三级分类
验证码
elseif($do == 2)
{ $svali = GetCkVdValue();
if(strtolower($vdcode)!=$svali || $svali=='') {
ResetVdValue();
ShowMsg('验证码错误!', '-1');
exit();
}
模板中
如: 给当天发布的内容加上 (new) 标志
[field:senddate runphp='yes']
$ntime = time();
$oneday = 3600 * 24;
if(($ntime - @me)<$oneday) @me = "<font color='red'>(new)</font>";
else @me = "";
[/field:senddate]
织梦404
第一步
.htaccess里面内容
ErrorDocument 404 /errorpage/404.html
第二步
在根目录下放一个errorpage/404.html
调用文章body中内容,过滤html样式,并限制调用字数:
{dede:arclist row='1' typeid='1' addfields='body' idlist='1' channelid='1'}
[field:body function='cn_substr(Html2text(@me),100)'/]
{/dede:arclist}
调用文章body中内容,过滤html样式,不限制调用字数:
{dede:arclist row='1' typeid='1' addfields='body' idlist='1' channelid='1'}
[field:body function='Html2Text(@me)'/]
{/dede:arclist}
调用文章body中内容,不过滤html样式,限制调用字数:
{dede:arclist row='1' typeid='1' addfields='body' idlist='1' channelid='1'}
[field:body function='cn_substr(@me,100)'/]
{/dede:arclist}
调用文章body中内容,不过滤html样式,不限制调用字数:
{dede:arclist row='1' typeid='1' addfields='body' idlist='1' channelid='1'}
[field:body/]
{/dede:arclist}
[field:pubdate function="MyDate('m-d',@me)"/]