Is it possible to change the permalink of a custom posttype?
I have a custom post type called "events", I have made a page called archive-event.php and this is reached by /event.php
is it possible to change this into something else? Like /foo.php?
|
Is it possible to change the permalink of a custom posttype? I have a custom post type called "events", I have made a page called archive-event.php and this is reached by /event.php is it possible to change this into something else? Like /foo.php? |
||||
|
When you register your post type you can set the archive page slug to anything you want via the If you want single events to have the same slug as the archive, you can set both via:
Or if you want the archive to have a different slug, set that separately via
|
|||||
|
fooand you are good to go. – Rohit Pande Feb 11 at 10:39