Created
March 23, 2017 12:27
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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