[events_rss_link]
As the eme_rss_link template tag does, prints a link to the events RSS feed. Accepts the following parameters:
justurlIf you set this property totrue, the function only prints the RSS URL.limitindicates the maximum number of events to display. Default is 5. If you give the value “0″ there’s no limit.scopelets you choose which events to show: Choose betweentoday,this_month,next_month,future,past,all,0000-MM(for the events of a specific month),YYYY-MM-DD(for the events on a single day) orYYYY-MM-DD--YYYY-MM-DD(for the events in a certain period) events. Default isfuture.orderindicates indicates the order of the events. Choose between ASC (ascendant, default) and DESC (descendant).echoindicates whether the list should be printed (true) or just returned (false). This option should be ignored, unless you know what you are doing.categorylimits the events shown to those of a certain category ID. You can specify multiple categories for AND and OR limitations: “1,3″ for events in category 1 OR 3, “1+3″ for events in category 1 AND 3authorlimits the events shown to those of a certain author (loginname). You can specify multiple authors for OR limitations: “admin,admin2″ for events created by user admin OR user admin2location_idlimits the events shown to those of a certain location ID.
Some examples:
[events_rss_link limit=20]
[events_rss_link scope=2010-00-00--2010-12-31 limit=0]
[events_rss_link scope=0000-04 limit=0]
[events_rss_link category=1,3] (gets you the list of future events in categories with ID 1 OR 3)
[events_rss_link category=1+3] (gets you the list of future events in categories with ID 1 AND 3)
[events_rss_link author=admin45] (gets you the list of future events created by user admin45)