首先,有archive-POST_TYPE.php
文件,所以在你的情况下archive-movie.php
.
您可以在Template Hierarchy.
其次,您可以使用单独的查询在任何地方列出您的自定义帖子:
$args = array(
\'post_type\' => \'movie\',
// maybe put some other settings here as well
);
$movies = new WP_Query($args);
if ($movies->have_posts()) {
while ($movies->have_posts()) {
$movies->the_post();
// now work with `the_content`, `the_title` and the like...
}
}
wp_reset_postdata();