So Flexible!
-
This plugin blew me away, Over the past 2 years I have tried a about 4 different event plugins for clients. This was the first time using Event Organiser. It allowed me to easily add and remove features that it came with, I could tap into the Taxonomies I had already created for other post types and related them to the “event” post type. Allowed me to use wp_query to display my posts with specific taxonomies attached.
global $post; $post_slug=$post->post_name; $args = array ( 'post_type' => 'event', 'post_status' => 'publish', 'order' => 'ASC', 'orderby' => 'eventstart', 'posts_per_page' => '6', 'cities' => $post_slug, ); // The Query $query_events = new WP_Query( $args );
Beyond happy with this plugin!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘So Flexible!’ is closed to new replies.