Skip to content

Instantly share code, notes, and snippets.

@anoopranawat
Last active June 13, 2016 05:07
Show Gist options
  • Save anoopranawat/03c0dbb8267381bdb2d692ba052fd009 to your computer and use it in GitHub Desktop.
Save anoopranawat/03c0dbb8267381bdb2d692ba052fd009 to your computer and use it in GitHub Desktop.
Function to change the `WP Blog and Widgets Pro` Post Type Slug
<?php
// Function to change the `WP Blog and Widgets Pro` post type slug
function wpbaw_pro_modify_news_post_slug( $slug ){
$slug = 'blog-post'; // Write your desired slug
return $slug;
}
add_filter( 'wpbaw_pro_blog_post_slug', 'wpbaw_pro_modify_news_post_slug' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment