the_time

函数
the_time ( $format = '' )
参数
  • (string) $format Optional. Format to use for retrieving the time the post was written. Accepts 'G', 'U', or PHP date format. Defaults to the 'time_format' option.
    Required:
    Default: (empty)
定义位置
相关方法
the_titleget_the_timetouch_timethe_datethe_meta
引入
0.71
弃用
-

the_time: 这个函数用来显示一个文章或页面在当前WordPress时区的时间。它通常在The Loop中使用,并接受一个字符串作为参数来格式化时间输出。

显示文章的写作时间。

function the_time( $format = '' ) {
	/**
	 * Filters the time a post was written for display.
	 *
	 * @since 0.71
	 *
	 * @param string $get_the_time The formatted time.
	 * @param string $format       Format to use for retrieving the time the post
	 *                             was written. Accepts 'G', 'U', or PHP date format.
	 */
	echo apply_filters( 'the_time', get_the_time( $format ), $format );
}

常见问题

FAQs
查看更多 >