Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Rename post tag taxonomy url
- add_action( 'init', 'rename_post_tag_url' );
- function rename_post_tag_url() {
- $args = array(
- 'rewrite' => array( 'with_front' => false, 'slug' => '../tags' )
- );
- register_taxonomy( 'post_tag', 'post', $args );
- }
Add Comment
Please, Sign In to add comment