For the version 3 tutorial on https://theeventscalendar.com/the-events-calendar-for-wordpress-tutorials/, I am wondering if the one for HOW TO CUSTOMIZE YOUR RSS FEED
on https://theeventscalendar.com/how-to-add-events-to-your-rss-feed/ is still valid. There were changes to RSS feeds in WP 3.5.2 and I’m wondering if this code to go in our functions.php file is still valid for WP 3.5.2.
Also, does the second one get added to the end of the first one or should it be a separate funtcion?
Example:
end of first one:
add_filter( ‘request’, ‘add_events_to_rss_feed’ );
?>
Start of second one:
<?php
// Add Tribe Event Namespace
add_filter( ‘rss2_ns’, ‘events_rss2_namespace’ );
.
.
.
or can it be :
add_filter( ‘request’, ‘add_events_to_rss_feed’ );
// Add Tribe Event Namespace
add_filter( ‘rss2_ns’, ‘events_rss2_namespace’ );
.
.
.
Thanks.