I’m a newbie in WordPress and I’ve just created a new custom-post type called arts. Is there a way I can create a custom page to display the ‘art’s custom type? The custom-post type has thumbnails which I’ll be displaying on the post and ‘arts’are a bit more different form other posts. Any help offered will be highly regarded.
Leave a Reply
You must be logged in to post a comment.
I f you set the argument
has_archive
inregister_post_type()
toTRUE
you get an archive automatically.Depending on your slug it will be available on
/arts/
probably.To customize the look of that page use a template
archive-{post_type}.php
.