2012-11-12 20 views
0

我在做二十一個主題中的「頁面的帖子」。問題是the_content函數忽略更多標籤並顯示整個帖子。它在索引頁面中工作得很好。 我的代碼:內容功能正在忽略更多的標籤

/* 
    Template Name: Page Of Posts 
    */ 
    ?> 
    <?php get_header(); ?> 
    <div id="primary"> 
    <div id="content" role="main"> 
    <?php 
     $args= array(
    'category_name' => ''); 
     query_posts($args); 
     if (have_posts()) : ?> 

      <?php twentyeleven_content_nav('nav-above'); ?> 

      <?php /* Start the Loop */ ?> 
      <?php while (have_posts()) : the_post(); ?>    
       <?php get_template_part('content', get_post_format()); ?> 

      <?php endwhile; ?> 

      <?php twentyeleven_content_nav('nav-below'); ?> 

     <?php else : ?> 

      <article id="post-0" class="post no-results not-found"> 
       <header class="entry-header"> 
        <h1 class="entry-title"><?php _e('Nothing Found', 'twentyeleven'); ?></h1> 
       </header><!-- .entry-header --> 

       <div class="entry-content"> 
        <p><?php _e('Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyeleven'); ?></p> 
        <?php get_search_form(); ?> 
       </div><!-- .entry-content --> 
      </article><!-- #post-0 --> 

     <?php endif; ?> 

     </div><!-- #content --> 
    </div><!-- #primary --> 

請幫幫忙!

回答

0

你能否列出你正在請求的文件get_template_part('content', get_post_format())它應該在名爲content-gallery.php(或任何其他post_format)的主題文件夾中。

無論如何,你可以嘗試歷久彌新:

<?php global $more; $more = 0; ?> 

將它呼籲內容之前。

+0

非常感謝!我使用發佈的代碼,它的工作。 – warriorslo