1

这个文档:

https://codex.wordpress.org/Class_Reference/WP_Meta_Query

告诉您可以比较 DATETIME 值。

WP_Meta_Query 的 DATETIME 的预期格式是什么?

4

1 回答 1

3

从 Wordpress 文档中,您似乎应该使用以下字符串格式:Y-m-d H:i:s.

所以元查询可能是:

$meta_query_args = array(
    'relation' => 'OR', // Optional, defaults to "AND"
    array(
        'key'     => 'field_key_with_datetime',
        'value'   => '2018-03-19 08:23:25', // Y-m-d H:i:s format
        'compare' => '=',
        'type'    => 'DATETIME'
    )
);
$meta_query = new WP_Meta_Query( $meta_query_args );

您可以使用 wordpresscurrent_time功能获取当前DATETIME

$meta_query_args = array(
    'relation' => 'OR',
    array(
        'key'     => 'field_key_with_datetime',
        'value'   => current_time( 'mysql' ), // will return something like '2018-03-19 08:23:25'
        'compare' => '=',
        'type'    => 'DATETIME'
    )
);
$meta_query = new WP_Meta_Query( $meta_query_args );

来源:https ://developer.wordpress.org/reference/functions/current_time/

于 2018-03-19T11:06:23.317 回答