Skip to content

Instantly share code, notes, and snippets.

@anoopranawat
Created November 15, 2016 06:17
Show Gist options
  • Save anoopranawat/c46e0dc95f8437b095e33e92d248853f to your computer and use it in GitHub Desktop.
Save anoopranawat/c46e0dc95f8437b095e33e92d248853f to your computer and use it in GitHub Desktop.
Function to change the 'WP FAQ Pro' Post type Slug
<?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