WordPress
3
Вклад в тег
<?php if ( have_posts() ) :
while ( have_posts() ) : the_post();
endwhile;
endif; ?>
<?php
/*
Template Name: Special template for movie post type.
*/
get_header();
<?php if ( have_posts() ) :
while ( have_posts() ) : the_post();
the_title();
the_content();
endwhile;
endif; ?>
get_footer();