Wordpress Codex WP 元查询参数的预期 DATETIME 格式是什么?

What is expected DATETIME format for Wordpress Codex WP Meta Query parameter?

此文档:

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

告诉您可以比较 DATETIME 值。

WP_Meta_Query 的 DATETIME 预期格式是什么?

从 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 );

可以使用wordpress current_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/