Created
October 28, 2022 15:27
-
-
Save someguy9/8329acd886f5192c84467c4a816d20cb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$meta_query_args = array( | |
'meta_query' => array( | |
array( | |
'key' => 'my_date_field', | |
'value' => array( strtotime('2022-01-01'), strtotime('2022-12-31') ), | |
'type' => 'numeric', | |
'compare' => 'BETWEEN' | |
) | |
) | |
); | |
$meta_query = new WP_Query( $meta_query_args ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment