时间标签是这样写的:[field:pubdate function=MyDate('d',@me)'/]
于是我们试着换一种写法,像这样: [field:pubdate function='strftime("%d",@me)'/]
以后大家在遇到时间显示错误,显示为数字时,可以考虑换一种写法,问题就解决了
strftime写法:
日期:{field:pubdate function=strftime('m-d',@me)/} 01-01
日期:{field:pubdate function=strftime('m月d日',@me)/} 01月01日
日期:{field:pubdate function=strftime('d日',@me)/} 01日
日期:{field:pubdate function=strftime('Y-m-d',@me)/} 2012-01-01
日期:{field:pubdate function=strftime('y-m-d',@me)/} 12-01-01
MyDate对应写法如下:
日期:[field:pubdate function="MyDate('m-d',@me)"/] 01-01
日期:[field:pubdate function="MyDate('m月d日',@me)"/] 01月01日
日期:[field:pubdate function="MyDate('d日',@me)"/] 01日
日期:[field:pubdate function="MyDate('Y-m-d',@me)"/] 2012-01-01
日期:[field:pubdate function="MyDate('y-m-d',@me)"/] 12-01-01