How do I search events between two set dates inside WP?
-
I am building a WP site with an events feature. The events page was made with custom post types. I want to make it possible for people to search/ filter events by dates. For example, they can search for all events happening between 2nd December, 2011 and 1st March, 2012 and get results from events that have their dates between the months of December and March (ie. december, january, february and march). I want to know the best way to go about this. Any ideas? You can see an example of what I want to achieve by looking at the "Search events by date" feature on this page http://www.londontown.com/events If that won't be possible, is there any way I can get them to search for events happening between certain months, say December and February(excluding the days)? Thanks in advance.
-
Answer:
There two things that you need to do to make this happen: 1) Create metadata for the data for each event 2) Query for the posts using meta_query For #1, you need to add a metabox that allows the user to add a date for the event. This data should be stored as metadata using the add_post_meta or update_post_meta. I would encourage you to read about adding metadata if you are not familiar with how to do it: http://codex.wordpress.org/Function_Reference/add_meta_box http://www.wproots.com/complex-meta-boxes-in-wordpress/ For #2, assuming that your have saved the date values in an orderable manner (e.g., YYYY-MM-DD), you can use the meta_query parameter of within a new instance of WP_Query to get the appropriate date range. This method assumes that your meta_key is "_my-datetime-from". For instance, you can get the posts in October and November 2011 with the following: // Set arguments for events $start = '2011-11-31'; $end = '2011-10-01'; $args = array( 'post_type' => 'my-event-type', 'posts_per_page' => -1, 'orderby' => 'meta_value', 'order' => 'ASC', 'meta_key' => '_my-datetime-from', 'meta_query' => array( array( 'key' => '_my-datetime-from', 'value' => array($start, $end), 'compare' => 'BETWEEN', 'type' => 'DATE' ) ) ); // Make the query $events_query = new WP_query(); $events_query->query($args);
Kwame Boame at WordPress Visit the source
Other answers
How do you store the event date: using the default post_date field of the post or a custom meta field? If you're using the default post_date, you can use the filter posts_where to add conditions for search, like this: // Create a new filtering function that will add our where clause to the query function filter_where( $where = '' ) { // posts for March 1 to March 15, 2010 $where .= " AND post_date >= '2010-03-01' AND post_date < '2010-03-16'"; return $where; } add_filter( 'posts_where', 'filter_where' ); $query = new WP_Query( $query_string ); remove_filter( 'posts_where', 'filter_where' ); For more examples, please check out the http://codex.wordpress.org/Function_Reference/WP_Query#Time_Parameters. In case of using custom field, I guess you have to write your own custom MySQL queries. It's a little bit more complicated. Here's an example: global $wpdb; $post_ids = $wpdb->get_col( " SELECT ID FROM {$wpdb->posts} JOIN {$wpdb->postmeta} WHERE ID=post_id AND meta_key='your_custom_meta_key' AND meta_value >= '2010-03-01' AND meta_value < '2010-03-16' " ); foreach ( $post_ids as $post_id ) { $post = get_post( $post_id ); // Do something } wp_reset_postdata();
Rilwis
Related Q & A:
- How do I search for text inside a PDF?Best solution by Stack Overflow
- How do I search for people that has yahoo messenger?Best solution by Yahoo! Answers
- How can I make $300 in two weeks?Best solution by Yahoo! Answers
- How do I search for a Bengali magazine?Best solution by infibeam.com
- How do I search ALL of Craigslist without having to search each city?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.