Skip to content

Instantly share code, notes, and snippets.

@anoopranawat
Created March 23, 2017 12:27
Show Gist options
  • Save anoopranawat/fe75fa47e3731fa25ff0cae70f3c22ba to your computer and use it in GitHub Desktop.
Save anoopranawat/fe75fa47e3731fa25ff0cae70f3c22ba to your computer and use it in GitHub Desktop.
Function to change the 'WP Team Showcase and Slider Pro' Post type Slug
<?php
// Function to change the `FAQ` post type slug
function wp_tsasp_modify_faq_post_slug($team_slug){
$team_slug = 'team-showcase'; // Write your desired slug
return $team_slug;
}
add_filter('wp_tsasp_post_slug', 'wp_tsasp_modify_faq_post_slug');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment