Created
November 15, 2016 06:17
-
-
Save anoopranawat/c46e0dc95f8437b095e33e92d248853f to your computer and use it in GitHub Desktop.
Function to change the 'WP FAQ 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_faqp_modify_faq_post_slug( $slug ){ | |
$slug = 'sp_faq'; // Write your desired slug | |
return $slug; | |
} | |
add_filter( 'wp_faqp_post_slug', 'wp_faqp_modify_faq_post_slug' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment