Skip to content

Instantly share code, notes, and snippets.

@anoopranawat
Last active June 25, 2016 12:04
Show Gist options
  • Save anoopranawat/9dfb0a8a878e35031683 to your computer and use it in GitHub Desktop.
Save anoopranawat/9dfb0a8a878e35031683 to your computer and use it in GitHub Desktop.
<?php
// Function to change the `WP News and Five Widgets Pro` post type slug
function wpnw_pro_modify_news_post_slug( $slug ){
$slug = 'news'; // Write your desired slug
return $slug;
}
add_filter( 'wpnw_pro_news_post_slug', 'wpnw_pro_modify_news_post_slug' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment