Change permalinks for posts but not for custom post types

Currently my permalink structure for posts is

domain.com/post-title

I’m using a static front page and a “blog” page for posts. I’d like to to change the permalink structure for posts, tags and categories to

Read More
domain.com/blog/post-title

I can easily add /blog/ in the permalink structure but the catch is that my custom post types also get this modified permalink structure and that is not the desired result.

Thanks in advance!

Related posts

Leave a Reply

1 comment

  1. When you register your post type, the with_front argument of rewrite should be false, so the permastruct is not appended to the front of your custom post type permalink.

    $args = array(
        // snip...
        'rewrite' => array( 'with_front' => false ),
        // snip...
    ); 
    
    register_post_type( 'your-post-type', $args );