Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ckpicker/9368480 to your computer and use it in GitHub Desktop.
Save ckpicker/9368480 to your computer and use it in GitHub Desktop.
Events Calendar 3.4.1 // Remove End Time from Single Event Meta
add_filter( 'tribe_event_meta_event_date', 'remove_end_time' );
function remove_end_time( $html ) {
$date_pieces = explode(' - ', $html);
$html = $date_pieces[0] . '</abbr></dd>';
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment