• I am trying to query the All in One Event Calendar as posts to display them in a featured slider of my theme.

    I tried to use this code

    $new_args = array(
    		'post_type' => array('post','ai1ec_event'),
    		'posts_per_page' => 4
    	);
    	$featured_query = new WP_Query($new_args);

    but it shows the last 4 posts, but not ai1ec events.

    What am I missing?

  • The topic ‘Query All in one event calendar events as posts’ is closed to new replies.