Forked from geoffgraham/gist:2fe5ba8350c3a8f630d0
Last active
December 11, 2015 22:26
-
-
Save theeventscalendar/e4b5fb7938efb058cd90 to your computer and use it in GitHub Desktop.
Make an Event Website a link instead of showing the text url
This file contains 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
add_filter('tribe_get_event_website_link_label', 'tribe_get_event_website_link_label_default'); | |
function tribe_get_event_website_link_label_default ($label) { | |
if( $label == tribe_get_event_website_url() ) { | |
$label = "Visit Website »"; | |
} | |
return '<a href="' . tribe_get_event_website_url() . '">' . $label . ' </a>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment