Show recurring events of Events Manager plugin

The Events Manager plugin considers normal events and recurring events are 2 different post types.
Content Views Pro can help you to show events of the Events Manager plugin easily (read more).
The recurring events are not publicly queryable by default. So you won’t see the “Recurring Events” as an option of the “Content Type” setting when creating a View.

To make recurring events publicly queryable, please add this code to file functions.php in the theme’s folder (or install this plugin Code Snippets then add this code to the “Code” textarea):

add_filter( 'em_cp_event_recurring_public', '__return_true' );
add_filter( 'em_cp_event_recurring_publicly_queryable', '__return_true' );

Then in a View, you can select “Recurring Events” as option of “Content Type” to show recurring events.

Best regards,

Scroll to Top