The Codex lists all of the comparison options on the WP_Query
page.
If you want events with a start date BETWEEN a range of dates, OR events with an end date BETWEEN a range of dates, something like this should work –
'relation' => 'OR',
array(
'key' => 'event_start_date',
'value' => array( $beginning_of_range, $end_of_range ),
'compare' => 'BETWEEN',
'type' => 'DATE'
),
array(
'key' => 'event_end_date',
'value' => array( $beginning_of_range, $end_of_range ),
'compare' => 'BETWEEN',
'type' => 'DATE'
)
Related Posts:
- Query between dates using date picker filter breaks in WordPress 4.2.1
- Order and group posts by acf by month and year
- pre_get_posts filter using numeric meta_query comparison (from dates)
- Set default date in datepicker of an advanced custom field
- Advanced custom fields: Customise date picker’s start date (need to choose year 1500 onwards) [closed]
- ACF Custom validation message not showing up
- Update post meta value as date difference between two fields
- How to break a date from ACF?
- WordPress Date with ACF
- html element to separate php variable strings – ACF datepicker
- Multiple orderby date arguments
- Comparing two dates (ACF and current time)
- Convert number to date format within an array
- Advanced Custom Fields, DatePicker – Check if Set
- Display “Today” Instead of Date for Pubslished Posts
- Is it possible to specify a time interval (from, to) in ACF with date picker, or other custom field?
- update_post_meta and update_field ony working when saving the post
- WP REST API: Order posts by meta value (acf)?
- How to update a custom post title from a front-end form using ACF fields?
- How to add a custom field to quick edit
- Gutenberg First Block on Page Conditional?
- Using meta_query and custom fields within pre_get_posts to return posts within a numerical range
- How to order by just the Time Field in Advanced Custom Fields
- ACF get field label in custom code
- How to customize a divs background dynamically using Advanced Custom Fields Plugin?
- Thumbnails generated from PDF in the “Media” section – how to show them in theme template?
- Post Object field orderby (Advanced Custom Field)
- How to count ACF Flexible Content Rows?
- How to write PHP array to render JSON-LD Markup for Job Postings, with ACF
- Is it safe and good practice to use do_shortcode to escape?
- Post edit – Media Library – Only get images from current post
- Output comma with get_field in Advanced Custom Fields [closed]
- Gutenberg on an ACF options page
- Changing a specific value inside a complex repeater/flexible content field (ACF)
- Wrap Gutenberg blocks both frontend/backend (PHP approach with ACF)
- change value of fields created with advanced custom fields in the front
- How to filter get_post with ACF by a checkbox field?
- How to get custom fields in a post when published
- Get all custom fields with wp’s get_posts()
- Get posts with multiple meta values
- How to populate a parent page with its child subpages and associated templates
- Advanced Custom Fields Plugin: Get file URL into Parent
- Find the first occurrence of a custom field
- ACF relationship field outputting unpublished content [closed]
- ACF Relationship – Limit to specific pages
- Show only the future event (Advanced Custom Fields)
- Can’t get “has_sub_field()” to work in a conditional [closed]
- Display total unique custon field results
- Advanced custom fields – pulling data in from another page
- Override not echoing my string or dom element
- ACF relationship fields ‘The results could not be loaded’
- Displaying user data within ACF relational field (user type)
- How to show Advanced Custom Fields data above share links, pagination, etc
- How to get file upload value in front-end to put in ACF image field
- ACF checkbox array is returning numbers, not labels [closed]
- Sorting the portfolio by an ACF? [closed]
- How to change the background color of my header dynamically based on a Custom Posts types color value?
- Advanced Custom Fields – category image
- TinyMCE’s “Clear Formatting” button doesn’t remove lists and headings
- ACF: Update field value based on value of another field
- Prevent other hooks from firing after wp_update_post() outside of editor
- Can I use WP blocks in a template?
- Set post publish date by custom field
- Use Acf Repeater data as options for a different acf custom select field
- ACF get group fields from current post taxonomy
- Explore custom posts (CPT UI & ACF) database from WP UI
- Transitioning Laravel App into WordPress (Portfolio Website)
- get the title of a relationship field
- How to call ACF field in functions?
- Possible to edit custom date field and display?
- Creating permissions rules with ACF repeater field
- ACF Date Form in Custom Admin Field
- ACF: Updating gallery field doesn’t work in backend
- How to pass get images in homepage also in portfolio page?
- Pulling author name via $_GET parameter
- Srcset incorrect with Owl Carousel and ACF?
- Rearranging Content After Blog Post
- ACF order relationship by date
- Advanced Custom Fields – Google Map Won’t Render Unless Variable Dumped
- Call the cropped image of a custom field in the theme
- How to create an ACF shortcode with Repeater Field in WordPress functions.php?
- Generate custom sized images from certain images in media library
- Relationship field problem: Uninitialized string offset: 0 in
- How to use an ACF taxonomy relationship field as part of the URL structure for a custom post type?
- wp_insert_post with advanced custum fields repeater
- Only list category if it has a custom field image
- Displaying page list and a custom field
- How to add admin functionality to allow ability to choose different field group to display on webpage using Advanced Custom Fields?
- Separate [Advanced Custom Field] values by commas
- Time sort with meta_key using UNIX timestamp failing due to date differences
- Advanced custom fields – If/ while field problem
- How not to strip leading zero in advanced custom fields
- ACF orderby not sorting dates correctly [closed]
- update_field() with repeater fields issue [closed]
- Advanced Custom Fields Image Crop
- Display ACF field only if value is greater than 0
- How can i get custom field to apear on my wordpress admin area (post_type)
- How to use ACF repeater? [closed]
- Updating post object via ACF breaks front-end
- ACF – if field has value within Field Group conditional statement [closed]