Last active
June 25, 2016 12:04
-
-
Save anoopranawat/9dfb0a8a878e35031683 to your computer and use it in GitHub Desktop.
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 `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