2012-07-15 64 views
0

我想刪除摘錄功能或呈現它無功能,因爲我希望所有的職位被充分查看其內容。我認爲這個主題有一些跟蹤,以確保摘錄是在那一行,所以它必須存在。wordpress主題摘錄功能消除thao工作室主題

function excerpt($limit) { 
     $excerpt = explode(' ', get_the_excerpt(), $limit); 
     if (count($excerpt)>=$limit) { 
     array_pop($excerpt); 
    $excerpt = implode(" ",$excerpt).'...'; 
    } else { 
    $excerpt = implode(" ",$excerpt); 
    } 
    $excerpt = preg_replace('`\[[^\]]*\]`','',$excerpt); 
    return $excerpt; 
} 

function content($limit) { 
    $content = explode(' ', get_the_content(), $limit); 
    if (count($content)>=$limit) { 
    array_pop($content); 
    $content = implode(" ",$content).'...'; 
    } else { 
    $content = implode(" ",$content); 
    } 
    $content = preg_replace('/\[.+\]/','', $content); 
    $content = apply_filters('the_content', $content); 
    $content = str_replace(']]>', ']]>', $content); 
    return $content; 
} 

我只有這2行代碼,我知道是相關的。 我不知道$限制來自哪裏,我試圖找到所有主題相關的PHP,沒有發現。 請幫幫我。非常感謝你。

+0

你想顯示完整的內容,而不是你的主題摘錄? – 2012-07-15 18:38:58

+0

是的,如果可能的話。我試圖儘可能長時間地做出摘錄,以便它顯示完整但失敗 – 2012-07-15 18:40:48

+0

爲什麼不在主題中使用the_content()? – 2012-07-15 18:41:48

回答

0

只要找到你想要顯示的全部內容,而不是摘錄內容,並與the_content()替換循環內的功能the_excerpt()模板文件(可能的index.php),即

<?php if (have_posts()) : ?> 
      <?php while (have_posts()) : the_post(); ?>  
      <!-- do other stuff ... --> 
      the_content(); 
      <?php endwhile; ?> 
<?php endif; ?> 

關於the_content()loop

+0

heera非常感謝你的提示 – 2012-07-16 12:48:52

+0

是否工作? – 2012-07-16 12:51:53

+1

是的謝謝你,我感謝你給了我額外的功能,但我只是想展示整個內容,所以我只是用內容替換了摘錄,非常感謝提示:) – 2012-07-18 13:32:56