Forum Replies Created
-
AuthorPosts
-
Victor
ParticipantThanks Jonah.
I was hoping that would have included the event date and such, but it just gave me the same feed as the previous one. I will read up on that custom feed stuff and try to create one of my own. Thanks for the tips!
Victor
Participanthmm… I think that may just be what I need. But that link doesn’t seem to work. Is there something I need to turn on?
http://creativepulsechicago.com/events/feed
And do you know if that would include the items that I was looking for, such as event date (and not post date)?Thanks!
Victor
ParticipantThanks, Jonah.
But this is somewhat disappointing considering that “Full RSS Feed” is listed on your event calendar description page. https://theeventscalendar.com/wordpress-events-calendar/ And yet, it’s not really shown how to create/get to that. All I’m asking for in the feed is just the pertinent details of an event post.
I honest don’t even know what to start with that link you sent me since I’m unfamiliar with php codes. Please if you can provide a better clue for me, it will be much appreciated. Or if you can point me to some examples that people have created a similar feed?
Thanks!
Victor
ParticipantThanks, but I’m really not familiar with php codes.
I was only able to have the rss that I have is from the codes you provided in that old post. How do I incorporate these tags you listed into an rss pull? The below that I made up probably isn’t correct. Please let me know the correct code. Thank you!
function add_events_to_rss_feed( $args ) {
if ( isset( $args[‘feed’] ) && !isset( $args[‘post_type’] ) )
$args[‘post_type’] = array(‘the_title’, ‘the_post_thumbnail’, ‘tribe_get_start_date’, ‘tribe_event_link’);
return $args;
}
add_filter( ‘request’, ‘add_events_to_rss_feed’ ); -
AuthorPosts
