<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>RSS Feed - Documentation</title>
	<atom:link href="https://docs.myeventon.com/documentation/addons/rss-feed/feed/" rel="self" type="application/rss+xml" />
	<link>https://docs.myeventon.com</link>
	<description>EventON Documentation</description>
	<lastBuildDate>Wed, 15 Apr 2026 05:33:32 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>How to customize event feed with arguments</title>
		<link>https://docs.myeventon.com/documentations/how-to-customize-event-feed-with-arguments/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-customize-event-feed-with-arguments</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Fri, 11 May 2018 16:18:29 +0000</pubDate>
				<guid isPermaLink="false">http://docs.myeventon.com/?post_type=document&#038;p=26901</guid>

					<description><![CDATA[<p>You can easily pass on regular eventON shortcode arguments to RSS feed to modify the feed using below code, which can be added to functions.php file in your theme.</p>
<p>The post <a href="https://docs.myeventon.com/documentations/how-to-customize-event-feed-with-arguments/">How to customize event feed with arguments</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>You can easily pass on regular eventON shortcode arguments to RSS feed to modify the feed using below code, which can be added to functions.php file in your theme.</p>



<div class="wp-block-kevinbatdorf-code-block-pro" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:block;padding:16px 0 0 16px;margin-bottom:-1px;width:100%;text-align:left;background-color:#2e3440ff"><svg xmlns="http://www.w3.org/2000/svg" width="54" height="14" viewBox="0 0 54 14"><g fill="none" fill-rule="evenodd" transform="translate(1 1)"><circle cx="6" cy="6" r="6" fill="#FF5F56" stroke="#E0443E" stroke-width=".5"></circle><circle cx="26" cy="6" r="6" fill="#FFBD2E" stroke="#DEA123" stroke-width=".5"></circle><circle cx="46" cy="6" r="6" fill="#27C93F" stroke="#1AAB29" stroke-width=".5"></circle></g></svg></span><span role="button" tabindex="0" data-code="add_filter('evorss_feed_events_args', function($array){
	// add supported eventon shortcode arguments
	$array['event_count'] = 10;
	return $array;
});" style="color:#d8dee9ff;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"></path></svg></span><pre class="shiki nord" style="background-color: #2e3440ff" tabindex="0"><code><span class="line"><span style="color: #88C0D0">add_filter</span><span style="color: #ECEFF4">(</span><span style="color: #ECEFF4">&#39;</span><span style="color: #A3BE8C">evorss_feed_events_args</span><span style="color: #ECEFF4">&#39;</span><span style="color: #ECEFF4">,</span><span style="color: #88C0D0"> </span><span style="color: #81A1C1">function</span><span style="color: #ECEFF4">(</span><span style="color: #81A1C1">$</span><span style="color: #D8DEE9">array</span><span style="color: #ECEFF4">){</span></span>
<span class="line"><span style="color: #ECEFF4">	</span><span style="color: #616E88">// add supported eventon shortcode arguments</span></span>
<span class="line"><span style="color: #88C0D0">	</span><span style="color: #81A1C1">$</span><span style="color: #D8DEE9">array</span><span style="color: #ECEFF4">[</span><span style="color: #ECEFF4">&#39;</span><span style="color: #A3BE8C">event_count</span><span style="color: #ECEFF4">&#39;</span><span style="color: #ECEFF4">]</span><span style="color: #88C0D0"> </span><span style="color: #81A1C1">=</span><span style="color: #88C0D0"> </span><span style="color: #B48EAD">10</span><span style="color: #81A1C1">;</span></span>
<span class="line"><span style="color: #88C0D0">	</span><span style="color: #81A1C1">return</span><span style="color: #88C0D0"> </span><span style="color: #81A1C1">$</span><span style="color: #D8DEE9">array</span><span style="color: #81A1C1">;</span></span>
<span class="line"><span style="color: #ECEFF4">})</span><span style="color: #81A1C1">;</span></span></code></pre></div><p>The post <a href="https://docs.myeventon.com/documentations/how-to-customize-event-feed-with-arguments/">How to customize event feed with arguments</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to set up RSS addon</title>
		<link>https://docs.myeventon.com/documentations/how-to-set-up-rss-addon/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-set-up-rss-addon</link>
		
		<dc:creator><![CDATA[Artem Barkov]]></dc:creator>
		<pubDate>Tue, 13 Oct 2015 00:53:36 +0000</pubDate>
				<guid isPermaLink="false">http://www.myeventon.com/?post_type=document&#038;p=13820</guid>

					<description><![CDATA[<p>This article assumes you have successfully installed and activated the RSS feed addon within wordpress plugins. Settings for RSS feed addon is available at EventON &#62; Settings &#62; RSS Feed Once you have installed the RSS feed addon in shortcode generator you should see new option to activate RSS feed button for that calendar. Adding [&#8230;]</p>
<p>The post <a href="https://docs.myeventon.com/documentations/how-to-set-up-rss-addon/">How to set up RSS addon</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>This article assumes you have successfully installed and activated the RSS feed addon within wordpress plugins.</p>



<p>Settings for RSS feed addon is available at <strong>EventON &gt; Settings &gt; RSS Feed</strong></p>



<p>Once you have installed the RSS feed addon in shortcode generator you should see new option to activate RSS feed button for that calendar.</p>


<div class="wp-block-image">
<figure class="aligncenter"><img fetchpriority="high" decoding="async" width="650" height="921" src="https://docs.myeventon.com/wp-content/uploads/2015/10/Screenshot-2024-12-30-at-01.01.05.jpg" alt="" class="wp-image-28784" srcset="https://docs.myeventon.com/wp-content/uploads/2015/10/Screenshot-2024-12-30-at-01.01.05.jpg 650w, https://docs.myeventon.com/wp-content/uploads/2015/10/Screenshot-2024-12-30-at-01.01.05-212x300.jpg 212w" sizes="(max-width: 650px) 100vw, 650px" /></figure>
</div>


<p>Adding rss=&#8221;yes&#8221; into shortcode will show the RSS button for eventON calendar.</p>


<div class="wp-block-image">
<figure class="aligncenter"><img decoding="async" width="648" height="598" src="https://docs.myeventon.com/wp-content/uploads/2015/10/Screenshot-2024-12-30-at-01.06.04.jpg" alt="" class="wp-image-28786" srcset="https://docs.myeventon.com/wp-content/uploads/2015/10/Screenshot-2024-12-30-at-01.06.04.jpg 648w, https://docs.myeventon.com/wp-content/uploads/2015/10/Screenshot-2024-12-30-at-01.06.04-300x277.jpg 300w" sizes="(max-width: 648px) 100vw, 648px" /></figure>
</div>


<p>RSS feed button appearance can be changed from <strong>EventON &gt; Settings &gt; Appearance &gt; RSS STYLES&nbsp;</strong></p><p>The post <a href="https://docs.myeventon.com/documentations/how-to-set-up-rss-addon/">How to set up RSS addon</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Changelog for RSS feed</title>
		<link>https://docs.myeventon.com/documentations/changelog-rssfeed/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=changelog-rssfeed</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Wed, 13 May 2015 18:16:03 +0000</pubDate>
				<guid isPermaLink="false">http://www.myeventon.com/?post_type=document&#038;p=11223</guid>

					<description><![CDATA[<p>v 1.2.4 (2026-4-14)ADDED: Ability to set feed start date range v 1.2.3 (2026-1-5)FIXED: Last publish date in correct timeFIXED: publish date for event format issue v 1.2.1 (2025-3-24)ADDED: rss feed url link in settings v 1.2 (2024-11-19)ADDED: support for ICS event feedADDED: sanitization for url based parametersFIXED: php 8.2 compatibility v 1.1.6 (2023-8-11)ADDED: Number of [&#8230;]</p>
<p>The post <a href="https://docs.myeventon.com/documentations/changelog-rssfeed/">Changelog for RSS feed</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></description>
										<content:encoded><![CDATA[<p><strong>v 1.2.4 (2026-4-14)</strong><br>ADDED: Ability to set feed start date range</p>



<p><strong>v 1.2.3 (2026-1-5)</strong><br>FIXED: Last publish date in correct time<br>FIXED: publish date for event format issue</p>



<p><strong>v 1.2.1 (2025-3-24)</strong><br>ADDED: rss feed url link in settings</p>



<p><strong>v 1.2 (2024-11-19)</strong><br>ADDED: support for ICS event feed<br>ADDED: sanitization for url based parameters<br>FIXED: php 8.2 compatibility</p>



<p><strong>v 1.1.6 (2023-8-11)</strong><br>ADDED: Number of months value into settings<br>FIXED: moved add_feed inside init function<br>FIXED: event times in description not showing any more</p>



<p><strong>v 1.1.5 (2023-2-10)</strong><br>FIXED: php code printed on the feed<br>FIXED: rss header not closed bracket<br>FIXED: ?event_type value not working in URL</p>



<p><strong>v 1.1.4 (2022-11-26)</strong><br>FIXED: start and end text translations</p>



<p><strong>v 1.1.3 (2021-10-4)</strong><br>FIXED: isPermaLink nomenclature correction</p>



<p><strong>v 1.1.2 (2020-9-23)</strong><br>ADDE: isPermalink false to guid<br>ADDED: Option to sort events by event date or posted date<br>ADDED: option to hide past events from the feed<br>ADDED: option to set post author as always for event feed item<br>FIXED: get author not fetching correct event post author<br>FIXED: to use date_i18n() for date formatting</p>



<p><strong>v 1.1.1 (2020-9-9)</strong><br>ADDED: addon instance class<br>ADDED: Option to order events via settings</p>



<p><strong>v 1.1 (2020-1-29)</strong><br>ADDED: Ability to create custom feed links to get specific events based on filters<br>FIXED: RSS FEED not pulling in events<br>FIXED: Feed not showing future events</p>



<p><strong>v 1.0.3 (2019-6-28)</strong><br>FIXED: event count pluggable filter not working<br>FIXED: timezone offset not valid<br>FIXED: event pubdate not correct<br>REQ: eventon 2.7</p>



<p><strong>v 1.0.2 (2018-11-13)</strong><br>FIXED: event time offset not passing right<br>FIXED: Pubdate time offset causing validation errors</p>



<p><strong>v 1.0.1 (2018-9-7)</strong><br>FIXED: RSS feed event title filtering<br>FIXED: RSS feed guid not set as unique identifier<br>FIXED: RSS event feed title duplicating<br>FIXED: timezone value not passing to event times in the feed</p>



<p><strong>v 1.0 (2018-4-12)</strong><br>ADDED: pluggable filters to pass into event argument<br>ADDED: Ability to set custom feed title<br>FIXED: events to show based on the event time<br>FIXED: past events to not show in rss feed<br>FIXED: rss feed excerpt not passing correct</p>



<p><strong>v 0.8 (2017-7-31)</strong><br>FIXED: consistent date format everywhere in the feed with pluggability</p>



<p><strong>v 0.7 (2017-5-24)</strong><br>ADDED: pluggable filters into feed code for customization<br>FIXED: Order events by event start date in the feed<br>UPDATED: addon initiation process to comply with eventon 2.5+</p>



<p><strong>v 0.6 (2016-9-24)</strong><br>ADDED: RSS button as shortcode variable in basic event list as well<br>FIXED: Couple of validation errors on XML rss feed</p>



<p><strong>v 0.5 (2016-4-27)</strong><br>FIXED: PudDate not changing to event start date<br>FIXED: Incorrect pubDate timezone</p>



<p><strong>v 0.4 (2016-3-11)</strong><br>ADDED: Ability to set custom feed link<br>ADDED: Troubleshooter items to eventON basic troubleshooter in version 2.3.20</p>



<p><strong>v 0.3 (2015-7-10)</strong><br>FIXED: Event start and end times incorrect on RSS<br>UPDATED: Compatibility with eventon 2.3.6</p>



<p><strong>v 0.2 (2015-5-13)</strong><br>FIXED: not all events showing in feed<br>ADDED: Option to select whether to use event start time as feed time</p>



<p><strong>v0.1 (2015-2-16)</strong><br>Initial release</p><p>The post <a href="https://docs.myeventon.com/documentations/changelog-rssfeed/">Changelog for RSS feed</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
