Twentyeleven使用了帖子格式

时间:2013-01-08 17:15:03

标签: php wordpress

我正在开发一个主题并使用二十二主题作为我的基本主题

二十一次使用<?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(); ?>

正确的格式 This is a Proper FOrmat

不正确的格式

enter image description here

0 个答案:

没有答案