Skip to content

Instantly share code, notes, and snippets.

@anoopranawat
Created July 19, 2017 13:51
Show Gist options
  • Save anoopranawat/87120d2027e8c3416fe6ad3f844b5466 to your computer and use it in GitHub Desktop.
Save anoopranawat/87120d2027e8c3416fe6ad3f844b5466 to your computer and use it in GitHub Desktop.
Function to change the 'WP FAQ Pro' category slug
<?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