WP_Query search custom posts meta date fields

See the codex re Meta Query.
For example, this would get all posts at least a day old:

$date = date('Y-m-d H:i:s',strtotime("-1 days"));  // 1 day ago

meta_query' => array(
        array(
            'key'       => 'name of your key',
            'value'     => $date,
            'compare'   => '<=',
            'type'      => 'DATETIME',
        ),
    )

Leave a Comment