在post循环中。使用此代码。
<?php while (have_posts()) : the_post();
$post_type = get_post_type(get_the_ID());
if($post_type !=\'post\'){
get_template_part(\'content-\' . $post_type, get_post_format());
}
else {
get_template_part( \'content\', get_post_format() );
}
//If comments are open or we have at least one comment, load up the comment template.
// if ( comments_open() || get_comments_number() ) {
// comments_template( \'\', true );
// }
//endwhile; ?>
<?php comments_template( \'\', true ); ?>
<?php endwhile; // end of the loop. ?>
然后创建内容发布。php用于post类型页面结构。