Jimmyt1988
Jimmyt1988

Reputation: 21146

wordpress custom post type comes with a page

When you goto http://www.classicandvintage.co.uk/car/rebecca/ it is using a custom post type of car that i created...

thing is, this page also exists and I have no idea where it is coming from? http://www.classicandvintage.co.uk/car

any ideas?

Upvotes: 0

Views: 32

Answers (1)

Marty
Marty

Reputation: 4657

the page "Car",

is your top level (index.php) page, populating the page with all posts from that custom post type,

you could create a page template for that page, which lists all cars used for the weddings (which it is already) then show just the featured image from each post, instead of showing all the post info etc..

[[EDIT]] or if you want to redirect it:

in your htaccess file you could add

redirect 301 /car http://www.classicandvintage.co.uk/

Upvotes: 1

Related Questions