对于the_content()Wordpress

时间:2013-04-23 05:05:11

标签: wordpress

我有一个类别的帖子,我在循环中使用the_content()。之后,结果输出:Follower(有任何帖子),只有我使用echo get_the_content()才能显示内容。为什么the_content()无效?

请注意......

这是代码

    <div id="ani-content">
     <?php 
        $gallery = new WP_Query('post_type=gallery');
        while($gallery -> have_posts()) : $gallery -> the_post();
     ?>
     <div class="wrap-frame">
         <div class="frame">
             <h2><?php the_title() ;?></h2>
             <div class="image">
               <?php if(has_post_thumbnail()) {the_post_thumbnail('p_images_gallery'); }?>
             </div>
             <div class="p_content">
                <?php echo get_the_content(); ?>
             </div>
             <div class="readmore"><a href="<?php the_permalink(); ?>">Readmore</a></div>
         </div>
     </div>
    <?php endwhile;wp_reset_query(); ?>
  </div>

0 个答案:

没有答案