Created
July 19, 2017 13:51
-
-
Save anoopranawat/87120d2027e8c3416fe6ad3f844b5466 to your computer and use it in GitHub Desktop.
Function to change the 'WP FAQ Pro' category 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` category slug | |
function wp_faqp_modify_faq_cat_slug( $slug ){ | |
$slug = 'faq_cat'; // Write your desired slug | |
return $slug; | |
} | |
add_filter( 'wp_faqp_cat_slug', 'wp_faqp_modify_faq_cat_slug' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment