Skip to content

Instantly share code, notes, and snippets.

@jazbek
Created August 13, 2013 18:58
Show Gist options
  • Select an option

  • Save jazbek/6224473 to your computer and use it in GitHub Desktop.

Select an option

Save jazbek/6224473 to your computer and use it in GitHub Desktop.
Disable event organizer links
<?php
add_action('post_type_link', 'tribe_disable_organizer_links', 10, 2);
function tribe_disable_organizer_links($permalink, $post) {
if ($post->post_type == 'tribe_organizer') {
return false;
}
return $permalink;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment