Skip to content

Instantly share code, notes, and snippets.

@jesseeproductions
Created January 13, 2016 16:45
Show Gist options
  • Save jesseeproductions/f123e1aa51c774e9900f to your computer and use it in GitHub Desktop.
Save jesseeproductions/f123e1aa51c774e9900f to your computer and use it in GitHub Desktop.
The Events Calendar - Enable Break Tags in Excerpt HTML
/*
* The Events Calendar - Enable Break Tags in Excerpt HTML
*/
add_filter( 'tribe_events_excerpt_allowed_html', 'tribe_add_to_character_filter' );
function tribe_add_to_character_filter( $allowed_html ) {
$base_attrs = array(
'class' => array(),
'id' => array(),
'style' => array(),
);
$allowed_html['br'] = $base_attrs;
return $allowed_html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment