Skip to content

Instantly share code, notes, and snippets.

@lelandf
Created September 20, 2021 13:55
Show Gist options
  • Save lelandf/a9da46e2e5b2973e85db86dae601ec09 to your computer and use it in GitHub Desktop.
Save lelandf/a9da46e2e5b2973e85db86dae601ec09 to your computer and use it in GitHub Desktop.
[TEC] filter tribe_get_venue_link example
<?php
add_filter( 'tribe_get_venue_link', function( $link, $venue_id ) {
$just_the_title = get_the_title( $venue_id );
return $just_the_title;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment