Skip to content

Instantly share code, notes, and snippets.

@GeoffEW
Last active September 9, 2016 18:09
Show Gist options
  • Save GeoffEW/30fb1f8909fd6c0320edf5321caaf3eb to your computer and use it in GitHub Desktop.
Save GeoffEW/30fb1f8909fd6c0320edf5321caaf3eb to your computer and use it in GitHub Desktop.
/* Tribe, insert event website ask enrol link before event content */
function tribe_enrol_link ( ){
$website = tribe_get_event_website_url( );
// bail if no website
if ( empty( $website ) ) return false;
echo '<a href="' . esc_attr( $website ) . '" class="tilmeldbutton" target="_blank">TILMELD</a>';
}
add_action( 'tribe_events_single_event_before_the_content', 'tribe_enrol_link');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment