Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2. // Function to change the `WP News and Scrolling` Widgets Pro category slug
  3. function wpnw_pro_modify_news_cat_slug( $slug ){
  4.  
  5. $slug = 'news-category'; // Write your desired slug
  6.  
  7. return $slug;
  8. }
  9. add_filter( 'wpnw_pro_news_cat_slug', 'wpnw_pro_modify_news_cat_slug' );
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement