Reputation: 73
I have successfully created a new post type called movies
, but in wordpress
you access/style your posts inside index.php
, page.php
but how do I access the new post type movies as I have tried with movies.php
. it does work in single-movies.php
. do I just add some conditional logic to index.php
so that it knows its movies rather than just posts?
Upvotes: 1
Views: 33
Reputation: 3241
Create a archive-movies.php by simply duplicating your current archive.php file.
Upvotes: 1