How to change the store slug URL?

FAQ Viewed: 1568

If you want to change a stores slug URL store name, please place the function below into your child theme:

add_filter( 'register_post_type_args', 'wpse247328_register_post_type_args', 10, 2 );
function wpse247328_register_post_type_args( $args, $post_type ) {

    if ( 'stores' === $post_type ) {
        $args['rewrite']['slug'] = 'interactive-map';
    }

    return $args;
}

7 thoughts on “How to change the store slug URL?

    • Alex Petrie says:

      Please ignore / remove / delete my previous comment, I was working between a test site and a live site so its no wonder updating the test site did not affect the live site!

      Works like a dream, thanks for the swift response and sorry for the doh! moment

Leave a Reply

Your email address will not be published. Required fields are marked *