0

我想删除摘录功能或使其无功能,因为我希望查看所有帖子的全部内容。我认为主题有一些跟踪以确保摘录在该行中,因此它必须存在。

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;
}

我只有这两行我知道相关的代码。我不知道 $limit 来自哪里,我试图在所有与主题相关的 php 上找到,没有发现。请帮我。非常感谢。

4

1 回答 1

0

只需找到要显示完整内容而不是摘录内容的模板文件(可能是 index.php),然后将函数替换the_excerpt()the_content()循环内的函数,即

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

关于the_content()循环

于 2012-07-15T18:50:51.670 回答