I want to add all the blog posts to the /blogs/the-post-name type structure. I can do this through the permalinks settings with:
/blogs/%postname%/
but this also affects custom post types resulting in a
/blogs/custom-post-type/the-custom-post-type-name
How can i add all posts into the blogs folder without adding all my custom post types into the blogs folder?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
When registering the custom post types, set with_front to false:
register_post_type(
'my_post_type',
[
// ...etc.
'rewrite' => [
'with_front' => false,
],
]
);
The post type URL will then not include anything extra you’ve added in the Permalinks settings.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0