This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class EO_Shortcode_Grouped_Lists extends EventOrganiser_Shortcodes { | |
static function init() { | |
add_shortcode('eo_group_events_by_date', array(__CLASS__, 'handle_eventlist_shortcode')); | |
} | |
// Modified copy of orginal handle_eventlist_shortcode | |
static function handle_eventlist_shortcode($atts = array(), $content = null) { |