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

関連していることがわかっているこれらの2行のコードしかありません。$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()loopについて。

于 2012-07-15T18:50:51.670 に答える