Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Team Brainstorm Force

    (@brainstormteam)

    Hi @beithazohar,

    Please try adding the following snippet to your site.

    add_filter( 'register_post_type_args', 'kb_register_post_type_args', 10, 2 );
    function kb_register_post_type_args( $args, $post_type ) {
    
        if ( 'docs' === $post_type ) {
            $args['rewrite']['slug'] = 'kb';
        }
    
        return $args;
    }

    The snippet will change the docs to kb, please change it as your preference.

    I hope it will help.

    Kind regards,
    Herman ??

    Thread Starter beithazohar

    (@beithazohar)

    thank’s a lot

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘change slug’ is closed to new replies.