Is it possible to have an rss feed that shows only the current month's events?
Or a feed that only shows the latest events added to the calendar?
I'm trying to setup an auto post to our social feeds with all the new events added.
Thanks!
Is it possible to have an rss feed that shows only the current month's events?
Or a feed that only shows the latest events added to the calendar?
I'm trying to setup an auto post to our social feeds with all the new events added.
Thanks!
yes, you can try template file at wp-content/plugins/events-manager/templates/templates/rss.php then change this line
$EM_Events = EM_Events::get( array('scope'=>'future', 'owner'=>false ) );
to
$EM_Events = EM_Events::get( array('scope'=>'month', 'owner'=>false ) );
sample em rss url: http://yoursite.com/events/rss/ or shortcodes like [events_rss_link], [events_rss_url]
to use templates: http://wp-events-plugin.com/documentation/using-template-files/
http://wp-events-plugin.com/documentation/shortcodes/
http://wp-events-plugin.com/documentation/event-search-attributes/
You must log in to post.