Even though this question sounds like others here is my problem:
The site I am updating had a permalink structure of /%postname%
, during this time I created a custom post type of “popups” (rewrite slug = ‘popups’) so the urls were:
/popups/the-post-name
Now the site has a blog, and the permalink structure has been changed to /blog/%postname%
, this changed the custom post type url structure to:
/blog/popups/the-post-name
I want to keep the blog permalink structure as /blog/%postname%
but I want to have a custom url structure for my custom post type that is not tied to the blog permalink. So instead of the urls for my custom post type of popups showing up as:
/blog/popups/the-post-name
I want it to show up as:
/popups/the-post-name
while retaining the blog permalink of /blog/%postname%
When you registered the post type, one of the arguments was rewrite, which took an array. make sure there’s a
with_front
argument in therewrite
array, and set it tofalse
.That should take care of it.
Important: Be sure to flush your rewrite rules after changing the code (go to settings > permalinks and hit save).