我正在开发一个主题并使用 211 主题作为我的基本主题
二十一用途<?php get_template_part( 'content', get_post_format() ); ?>
获取帖子
所以这些代码在 index.php 中正常工作
但是当我在自定义页面模板中使用时
它没有得到适当的格式化
<?php
/*
Template Name: Vote Page Template
*/
get_header(); ?>
<div id="primary">
<div class="container">
<head>
</head>
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts()) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>
正确的格式
格式不正确