{"id":1190191,"date":"2016-11-10T02:24:57","date_gmt":"2016-11-10T10:24:57","guid":{"rendered":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/"},"modified":"2016-11-10T02:24:57","modified_gmt":"2016-11-10T10:24:57","slug":"problems-to-compare-start-and-end-date-in-wp_query","status":"closed","type":"topic","link":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/","title":{"rendered":"Problems to compare start and end date in wp_query"},"content":{"rendered":"<p>Hello,<br \/>\ni need to let my visitor choose a start date and a end date to filter the events.<br \/>\nSo i use wp_query, all work fine when i choose only a start date or a and date, see the query below :<br \/>\nWhen user choose a start date :<br \/>\n\t\t\t&#8216;post_type&#8217; =&gt; &#8216;tribe_events&#8217;,<br \/>\n\t\t\t&#8216;posts_per_page&#8217; =&gt; -1,<br \/>\n\t\t\t&#8216;orderby&#8217; =&gt; &#8216;meta_value&#8217;,<br \/>\n\t\t\t&#8216;order&#8217; =&gt; &#8216;DESC&#8217;,<br \/>\n\t\t\t&#8216;eventDisplay&#8217;=&gt;&#8217;custom&#8217;,<br \/>\n\t\t\t&#8216;meta_query&#8217; =&gt; array(<br \/>\n\t\t\t\tarray(<br \/>\n\t\t\t\t\t&#8216;key&#8217; =&gt; &#8216;_EventStartDate&#8217;,<br \/>\n\t\t\t\t\t&#8216;value&#8217; =&gt; $date_evenement_debut,<br \/>\n\t\t\t\t\t&#8216;compare&#8217; =&gt; &#8216;&gt;=&#8217;,<br \/>\n\t\t\t\t\t&#8216;type&#8217;    =&gt; &#8216;DATE&#8217;<br \/>\n\t\t\t\t)<br \/>\n\t\t\t)<br \/>\nWhen user choose a end date :<br \/>\n\t\t\t&#8216;post_type&#8217; =&gt; &#8216;tribe_events&#8217;,<br \/>\n\t\t\t&#8216;posts_per_page&#8217; =&gt; -1,<br \/>\n\t\t\t&#8216;orderby&#8217; =&gt; &#8216;meta_value&#8217;,<br \/>\n\t\t\t&#8216;order&#8217; =&gt; &#8216;DESC&#8217;,<br \/>\n\t\t\t&#8216;eventDisplay&#8217;=&gt;&#8217;custom&#8217;,<br \/>\n\t\t\t&#8216;meta_query&#8217; =&gt; array(<br \/>\n\t\t\t\tarray(<br \/>\n\t\t\t\t\t&#8216;key&#8217; =&gt; &#8216;_EventEndDate&#8217;,<br \/>\n\t\t\t\t\t&#8216;value&#8217; =&gt; $date_evenement_fin,<br \/>\n\t\t\t\t\t&#8216;compare&#8217; =&gt; &#8216;&lt;=&#8217;,<br \/>\n\t\t\t\t\t&#8216;type&#8217;    =&gt; &#8216;DATE&#8217;<br \/>\n\t\t\t\t),<br \/>\n\t\t\t)<\/p>\n<p>So i tested this request to compare 2 dates with the 2 dates of the events :<br \/>\n\t\t\t&#8216;post_type&#8217; =&gt; &#8216;tribe_events&#8217;,<br \/>\n\t\t\t&#8216;posts_per_page&#8217; =&gt; -1,<br \/>\n\t\t\t&#8216;orderby&#8217; =&gt; &#8216;meta_value&#8217;,<br \/>\n\t\t\t&#8216;order&#8217; =&gt; &#8216;DESC&#8217;,<br \/>\n\t\t\t&#8216;eventDisplay&#8217;=&gt;&#8217;custom&#8217;,<br \/>\n\t\t\t&#8216;meta_query&#8217; =&gt; array(<br \/>\n\t\t\t\tarray(<br \/>\n\t\t\t\t\t&#8216;key&#8217; =&gt; &#8216;_EventStartDate&#8217;,<br \/>\n\t\t\t\t\t&#8216;value&#8217; =&gt; $date_evenement_debut,<br \/>\n\t\t\t\t\t&#8216;compare&#8217; =&gt; &#8216;&gt;=&#8217;,<br \/>\n\t\t\t\t\t&#8216;type&#8217;    =&gt; &#8216;DATE&#8217;<br \/>\n\t\t\t\t),<br \/>\n\t\t\t\tarray(<br \/>\n\t\t\t\t\t&#8216;key&#8217; =&gt; &#8216;_EventEndDate&#8217;,<br \/>\n\t\t\t\t\t&#8216;value&#8217; =&gt; $date_evenement_fin,<br \/>\n\t\t\t\t\t&#8216;compare&#8217; =&gt; &#8216;&lt;=&#8217;,<br \/>\n\t\t\t\t\t&#8216;type&#8217;    =&gt; &#8216;DATE&#8217;<br \/>\n\t\t\t\t)<br \/>\n\t\t\t)<br \/>\nBut it&#8217;s not working, i search on multiples forums and some users solve this problem using date on format NUMERIC like this :<br \/>\n$date_event_debut and $date_event_fin is on format YYYYMMDD.<br \/>\nBut it&#8217;s not working.<\/p>\n<p>\t\t\t&#8216;post_type&#8217; =&gt; &#8216;tribe_events&#8217;,<br \/>\n\t\t\t&#8216;posts_per_page&#8217; =&gt; -1,<br \/>\n\t\t\t&#8216;orderby&#8217; =&gt; &#8216;meta_value&#8217;,<br \/>\n\t\t\t&#8216;order&#8217; =&gt; &#8216;DESC&#8217;,<br \/>\n\t\t\t&#8216;eventDisplay&#8217;=&gt;&#8217;custom&#8217;,<br \/>\n\t\t\t&#8216;meta_query&#8217; =&gt; array(<br \/>\n\t\t\t\tarray(<br \/>\n\t\t\t\t\t&#8216;key&#8217; =&gt; &#8216;_EventStartDate&#8217;,<br \/>\n\t\t\t\t\t&#8216;value&#8217; =&gt; array($date_event_debut,$date_event_fin),<br \/>\n\t\t\t\t\t&#8216;compare&#8217; =&gt; &#8216;BETWEEN&#8217;,<br \/>\n\t\t\t\t\t&#8216;type&#8217;    =&gt; &#8216;DATE&#8217;<br \/>\n\t\t\t\t),<br \/>\n\t\t\t),<br \/>\nDo you have any possible solutions ?<br \/>\nThank you to bring me your light.<\/p>\n","protected":false},"template":"","class_list":["post-1190191","topic","type-topic","status-closed","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Problems to compare start and end date in wp_query -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Problems to compare start and end date in wp_query -\" \/>\n<meta property=\"og:description\" content=\"Hello, i need to let my visitor choose a start date and a end date to filter the events. So i use wp_query, all work fine when i choose only a start date or a and date, see the query below : When user choose a start date : &#8216;post_type&#8217; =&gt; &#8216;tribe_events&#8217;, &#8216;posts_per_page&#8217; =&gt; -1, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/\",\"url\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/\",\"name\":\"Problems to compare start and end date in wp_query -\",\"isPartOf\":{\"@id\":\"https:\/\/theeventscalendar.com\/support\/#website\"},\"datePublished\":\"2016-11-10T10:24:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/theeventscalendar.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Topics\",\"item\":\"https:\/\/theeventscalendar.com\/support\/topics\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Calendar Products\",\"item\":\"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Events Calendar PRO\",\"item\":\"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/events-calendar-pro\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"Problems to compare start and end date in wp_query\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/theeventscalendar.com\/support\/#website\",\"url\":\"https:\/\/theeventscalendar.com\/support\/\",\"name\":\"\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/theeventscalendar.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Problems to compare start and end date in wp_query -","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/","og_locale":"en_US","og_type":"article","og_title":"Problems to compare start and end date in wp_query -","og_description":"Hello, i need to let my visitor choose a start date and a end date to filter the events. So i use wp_query, all work fine when i choose only a start date or a and date, see the query below : When user choose a start date : &#8216;post_type&#8217; =&gt; &#8216;tribe_events&#8217;, &#8216;posts_per_page&#8217; =&gt; -1, [&hellip;]","og_url":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/","url":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/","name":"Problems to compare start and end date in wp_query -","isPartOf":{"@id":"https:\/\/theeventscalendar.com\/support\/#website"},"datePublished":"2016-11-10T10:24:57+00:00","breadcrumb":{"@id":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/problems-to-compare-start-and-end-date-in-wp_query\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/theeventscalendar.com\/support\/"},{"@type":"ListItem","position":2,"name":"Topics","item":"https:\/\/theeventscalendar.com\/support\/topics\/"},{"@type":"ListItem","position":3,"name":"Calendar Products","item":"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/"},{"@type":"ListItem","position":4,"name":"Events Calendar PRO","item":"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/events-calendar-pro\/"},{"@type":"ListItem","position":5,"name":"Problems to compare start and end date in wp_query"}]},{"@type":"WebSite","@id":"https:\/\/theeventscalendar.com\/support\/#website","url":"https:\/\/theeventscalendar.com\/support\/","name":"","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/theeventscalendar.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/topic\/1190191","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/topic"}],"about":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/types\/topic"}],"version-history":[{"count":0,"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/topic\/1190191\/revisions"}],"wp:attachment":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/media?parent=1190191"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}