kisukedeath

lol

May 17th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // Rename post tag taxonomy url
  2.  
  3. add_action( 'init', 'rename_post_tag_url' );
  4.  
  5. function rename_post_tag_url() {
  6. $args = array(
  7. 'rewrite' => array( 'with_front' => false, 'slug' => '../tags' )
  8. );
  9.  
  10. register_taxonomy( 'post_tag', 'post', $args );
  11. }
Add Comment
Please, Sign In to add comment