wp_resolve_post_date
函数
wp_resolve_post_date ( $post_date = '', $post_date_gmt = '' )
- 参数
-
-
(string)
$post_date
The date in mysql format.- Required: 否
- Default: (empty)
-
(string)
$post_date_gmt
The GMT date in mysql format.- Required: 否
- Default: (empty)
-
(string)
- 返回值
-
- (string|false) A valid Gregorian-calendar date string, or false on failure.
- 定义位置
-
-
wp-includes/post.php
, line 4948
-
wp-includes/post.php
- 引入
- 5.7.0
- 弃用
- –
Uses wp_checkdate to return a valid Gregorian-calendar value for post_date.
If post_date is not provided, this first checks post_date_gmt if provided,
then falls back to use the current time.
For back-compat purposes in wp_insert_post, an empty post_date and an invalid
post_date_gmt will continue to return ‘1970-01-01 00:00:00’ rather than false.
function wp_resolve_post_date( $post_date = '', $post_date_gmt = '' ) { // If the date is empty, set the date to now. if ( empty( $post_date ) || '0000-00-00 00:00:00' === $post_date ) { if ( empty( $post_date_gmt ) || '0000-00-00 00:00:00' === $post_date_gmt ) { $post_date = current_time( 'mysql' ); } else { $post_date = get_date_from_gmt( $post_date_gmt ); } } // Validate the date. $month = (int) substr( $post_date, 5, 2 ); $day = (int) substr( $post_date, 8, 2 ); $year = (int) substr( $post_date, 0, 4 ); $valid_date = wp_checkdate( $month, $day, $year, $post_date ); if ( ! $valid_date ) { return false; } return $post_date; }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。