Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function action_rss2_evns() {
- echo 'xmlns:ev="http://purl.org/rss/1.0/modules/event/"
- xmlns:xCal="urn:ietf:params:xml:ns:xcal"';
- }
- add_action('rss2_ns', 'action_rss2_evns');
- function action_rss2_eventdates() {
- global $post;
- if (tribe_is_event($post)) {
- echo '<ev:startdate>'.tribe_get_start_date($post, false, 'D, d M Y H:i:s -0004').'</ev:startdate>';
- echo '<ev:enddate>'.tribe_get_end_date($post, false, 'D, d M Y H:i:s -0004').'</ev:enddate>';
- echo '<xCal:dtstart>'.tribe_get_start_date($post, false, 'D, d M Y H:i:s -0004').'</xCal:dtstart>';
- echo '<xCal:dtend>'.tribe_get_end_date($post, false, 'D, d M Y H:i:s -0004').'</xCal:dtend>';
- }
- }
- add_action('rss2_item', 'action_rss2_eventdates');
- ?>
Advertisement
Add Comment
Please, Sign In to add comment