Title: changing the permalink
Last modified: July 21, 2017

---

# changing the permalink

 *  Resolved [rjaehnrich](https://wordpress.org/support/users/rjaehnrich/)
 * (@rjaehnrich)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/changing-the-permalink-2/)
 * Hey,
 * ist there a way to change the base of the permalink from the single post?
    f.
   e. domain.de/erfahrungsbericht/single-post to domain.de/kundenstimme/single-post
 * thanks 🙂

Viewing 1 replies (of 1 total)

 *  Plugin Contributor [Chris Dillon](https://wordpress.org/support/users/cdillon27/)
 * (@cdillon27)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/changing-the-permalink-2/#post-9340747)
 * Hi,
 * I have a pro add-on for changing that and much more.
    [https://strongplugins.com/plugins/strong-testimonials-properties/](https://strongplugins.com/plugins/strong-testimonials-properties/)
 * Or add this to your theme’s functions.php or an [mu-plugin](https://gregrickaby.com/2013/10/create-mu-plugin-for-wordpress/):
 *     ```
       /**
        * Change testimonial slug
        */
       function my_testimonial_slug( $args ) {
       	$args['rewrite']['slug'] = 'kundenstimme';
       	return $args;
       }
       add_filter( 'wpmtst_post_type', 'my_testimonial_slug' );
       ```
   
 * Then flush permalinks by going to General Settings > Permalinks and simply clicking“
   Save Changes”.

Viewing 1 replies (of 1 total)

The topic ‘changing the permalink’ is closed to new replies.

 * ![](https://ps.w.org/strong-testimonials/assets/icon-256x256.png?rev=3134855)
 * [Strong Testimonials](https://wordpress.org/plugins/strong-testimonials/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/strong-testimonials/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/strong-testimonials/)
 * [Active Topics](https://wordpress.org/support/plugin/strong-testimonials/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/strong-testimonials/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/strong-testimonials/reviews/)

## Tags

 * [change slug](https://wordpress.org/support/topic-tag/change-slug/)

 * 1 reply
 * 2 participants
 * Last reply from: [Chris Dillon](https://wordpress.org/support/users/cdillon27/)
 * Last activity: [8 years, 8 months ago](https://wordpress.org/support/topic/changing-the-permalink-2/#post-9340747)
 * Status: resolved