Skip to content

Instantly share code, notes, and snippets.

@dboutote
Created January 25, 2018 20:30
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 dboutote/d06d3d08c07bc8261210f24201e5f866 to your computer and use it in GitHub Desktop.
Save dboutote/d06d3d08c07bc8261210f24201e5f866 to your computer and use it in GitHub Desktop.
Fix The Events Calendar 4.6 update for custom url slug
<?php
function filter_tribe_bases( $bases = array() ){
$rewriteSlug = sanitize_title( Tribe__Settings_Manager::get_option( ‘eventsSlug’, ‘events’ ) );
$bases[‘archive’] = array( $rewriteSlug );
return $bases;
}
add_filter( ‘tribe_events_rewrite_base_slugs’, ‘filter_tribe_bases’ );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment