How to customize event feed with arguments
Last Updated: February 21, 2025
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.
add_filter('evorss_feed_events_args', function($array){
// add supported eventon shortcode arguments
$array['event_count'] = 10;
return $array;
});
Did this article help you?