参数
- $format
-
(string) (可选) 用于检索文章撰写时间的格式。接受“G”、“U”或PHP日期格式。默认为“time_format”选项。
默认值: ''
源码
更新日志
版本 | 描述 |
---|---|
0.71 | 开始引入 |
使用示例
以日期格式“F j,Y”(例如:December 2, 2004)显示时间,这可用于替换the_date()。
<div><?php the_time('F j, Y'); ?></div>
基本示例
使用WordPress默认值显示时间。
<p><?php _e( 'Time posted: ', 'textdomain' ) . the_time() ); ?></p>
使用格式参数字符串“g:i a”(例如:10:36 pm)显示时间。
<p><?php _e( 'Time posted: ', 'textdomain' ) . the_time( 'g:i a' ) ); ?></p>
使用24小时格式参数字符串“G:i”(例如:17:52)显示时间。
<p><?php _e( 'Time posted: ', 'textdomain' ) . the_time( 'G:i' ) ); ?></p>
显示日期和时间。
<p>Posted: <?php the_date('F j, Y'); ?> at <?php the_time('g:i a'); ?></p>
示例输出为:
Posted: July 17, 2007 at 7:19 am