Advertisement
Guest User

Untitled

a guest
May 15th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. function change_taxonomies_slug( $args, $taxonomy ) {
  2.    if ( 'accommodations' === $taxonomy ) {
  3.       $args['rewrite']['slug'] = 'yourownslug'; // Add your own slug there
  4.    }
  5.  
  6.    return $args;
  7. }
  8. add_filter( 'register_taxonomy_args', 'change_taxonomies_slug', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement