• Resolved rjaehnrich

    (@rjaehnrich)


    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

    (@cdillon27)

    Hi,

    I have a pro add-on for changing that and much more.
    https://strongplugins.com/plugins/strong-testimonials-properties/

    Or add this to your theme’s functions.php or an mu-plugin:

    /**
     * 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.