Custom Post Type URL Rewriting?
When you register the custom post type, you have to specify that the rewrite rule shouldn’t be prepended with the existing URL structure. In short, this means that this line in your register_post_type call: ‘rewrite’ => array(‘slug’ => ‘projects’), should turn into this: ‘rewrite’ => array(‘slug’ => ‘projects’,’with_front’ => false), For more info, check out … Read more