get_the_date

函数
get_the_date ( $format = '', $post = null )
参数
  • (string) $format Optional. PHP date format. Defaults to the 'date_format' option.
    Required:
    Default: (empty)
  • (int|WP_Post) $post Optional. Post ID or WP_Post object. Default current post.
    Required:
    Default: null
返回值
  • (string|int|false) Date the current post was written. False on failure.
定义位置
相关方法
get_theme_dataget_theme_updatesget_the_timeget_the_idthe_date
引入
3.0.0
弃用
-

get_the_date: 这个函数检索当前文章或页面的日期,根据WordPress设置中的日期格式进行格式化。它需要两个可选参数:日期格式和文章ID。它以字符串形式返回格式化的日期。

检索文章的写作日期。

与the_date()不同的是,这个函数将总是返回日期。用{@see ‘get_the_date’}过滤器修改输出。

function get_the_date( $format = '', $post = null ) {
	$post = get_post( $post );

	if ( ! $post ) {
		return false;
	}

	$_format = ! empty( $format ) ? $format : get_option( 'date_format' );

	$the_date = get_post_time( $_format, false, $post, true );

	/**
	 * Filters the date a post was published.
	 *
	 * @since 3.0.0
	 *
	 * @param string|int  $the_date Formatted date string or Unix timestamp if `$format` is 'U' or 'G'.
	 * @param string      $format   PHP date format.
	 * @param WP_Post     $post     The post object.
	 */
	return apply_filters( 'get_the_date', $the_date, $format, $post );
}

常见问题

FAQs
查看更多 >