当前浏览:首页 / WordPress函数 / the_time()

the_time( string $format = '' )

显示撰写文章的时间

themore...

timemore...


参数

$format

(string) (可选) 用于检索文章撰写时间的格式。接受“G”、“U”或PHP日期格式。默认为“time_format”选项。

默认值: ''



源码

查看源码 官方文档


更新日志

版本描述
0.71开始引入

使用示例

  • 示例1

    以日期格式“F j,Y”(例如:December 2, 2004)显示时间,这可用于替换the_date()。

    <div><?php the_time('F j, Y'); ?></div>
    
  • 示例2

    基本示例

    使用WordPress默认值显示时间。

    <p><?php _e( 'Time posted: ', 'textdomain' ) . the_time() ); ?></p>
    
  • 示例3

    使用格式参数字符串“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>
    
  • 示例4

    显示日期和时间。

    <p>Posted: <?php the_date('F j, Y'); ?> at <?php the_time('g:i a'); ?></p>
    

    示例输出为:

    Posted: July 17, 2007 at 7:19 am