eventorganiser_ical_description
(filter)
Filters the description of the event as it appears in the iCal feed.
Parameters
string
|
$description |
The event description
|
Example Usage
add_filter( 'eventorganiser_ical_description', 'my_callback_function', 10, 1 );
function my_callback_function( $description ){
//Change first value and return it
return $description
};