wordpress主题摘录功能淘汰工作室主题

时间:2012-07-15 18:17:32

标签: wordpress wordpress-theming

我想删除摘录功能或将其呈现为无功能,因为我想要查看所有帖子的内容。我认为主题有一些跟踪,以确保摘录在该行,所以它必须存在。

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,没有发现。 请帮我。非常感谢你。

1 个答案:

答案 0 :(得分: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()loop