Skip to content

Instantly share code, notes, and snippets.

@anoopranawat
Last active January 18, 2017 12:14
Show Gist options
  • Save anoopranawat/921431b898b2fc25ccb5ca6a39dfb020 to your computer and use it in GitHub Desktop.
Save anoopranawat/921431b898b2fc25ccb5ca6a39dfb020 to your computer and use it in GitHub Desktop.
Function to change the WP News and Scrolling Widgets Pro Post Type Slug
<?php
// Function to change the `WP News and Scrolling` Widgets Pro category slug
function wpnw_pro_modify_news_cat_slug( $slug ){
$slug = 'news-category'; // Write your desired slug
return $slug;
}
add_filter( 'wpnw_pro_news_cat_slug', 'wpnw_pro_modify_news_cat_slug' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment