WordPress中文时间日期格式飞龙举例 (340)
大家都知道,wordpress是国外人开发的,默认的时间格式不符合中文的习惯。WordPress中文时间格式,怎么设置?这里飞龙举7个基本例子来可以说明。其它方式混合用即可。本日志更新网址:http://feilong.org/wordpress-shijian 飞龙第4次修订于20101203 ,希望对您有用!
一、wordpress中文年月日日期时间的设置:
|
1 2 3 4 5 6 7 8 9 10 |
<? php //例1:2009年11月5日 the_time('Y年n月j日'); //例2:2009915 the_time('Ynd'); //例3:20090905 the_time('Ymd'); ?> |
二、wordpress中文时分秒时间的设置:
|
1 2 3 4 5 6 7 8 9 10 |
<? php //例4:14点29分31秒 the_time('G点i分s秒'); //例5:14:29:31 the_time('G:i:s'); //例6:2:29:31 pm the_time('g:i:s a'); ?> |
三、wordpress中文日期星期的设置:
|
1 2 3 4 |
<? php //例7:2009年11月5日星期四 the_time('Y年n月j日l'); ?> |
四、更多wordpress时间日期格式参考 http://codex.wordpress.org/Formatting_Date_and_Time
本文更新网址:https://feilong.org/wordpress-shijian
2009-11-05 ~ 2009-11-05
加入收藏夹,查看更方便。
分类: wordpress