織夢(mèng)模板下載Dedecms時(shí)間日期標(biāo)簽 pubdate 總結(jié)教程
時(shí)間: 2018-11-19 09:26
閱讀: 次
作者:素材無憂網(wǎng)
模板制作過程中常遇到需要調(diào)用的時(shí)間標(biāo)簽,在這里簡(jiǎn)單列出部分織夢(mèng)CMS模板的時(shí)間標(biāo)簽代碼
首頁dedecms可以用的時(shí)間標(biāo)簽:
第一、12-27 (12月27日)樣式
([field:pubdate function='strftime("%m-%d",@me)'/])
第二、May 15, 2009 樣式
([field:pubdate function='strftime("%b %d, %Y",@me)'/])
提示:可修改后代碼再運(yùn)行!
列表頁dedecms可用時(shí)間標(biāo)簽:
第一、2009-12-27 18:30:02 樣式
[field:pubdate function="GetDateTimeMK(@me)"/]
第二、2009-12-27 樣式
[field:pubdate function="GetDateMK(@me)"/]
內(nèi)容頁dedecms可用時(shí)間標(biāo)簽:
第一、2009-12-27 樣式
{dede:field name='pubdate' function='GetDateMk(@me)'/}
第二、May 15, 2009 樣式
{dede:field name='pubdate' function='strftime("%b %d, %Y",@me)'/}
24小時(shí)內(nèi)的時(shí)間顯示紅色:
[field:pubdate runphp='yes']
$a="";";
$b="
$c=strftime("%Y年%m月%d日 %H:%M:%S","@me");
$ntime = time();
$oneday = 3600 * 24;
if(($ntime - @me)<$oneday) @me = $a.$c.$b;
else @me =$c;
[/field:pubdate]
最后更新時(shí)間
{dede:tagname runphp='yes'}@me = date("Y-m-d H:i:s", time());{/dede:tagname}
XX天前
[field:pubdate runphp='yes']
$today = Floor(time()/(3600 * 24));
$senday= Floor(@me/(3600 * 24));
標(biāo)簽: