• Trying to get the_excerpt to work in template. It shows only the excerpt if there is a defined excerpt. I thought it is supposed to automatically truncate the post to (pick one) 55 characters, 120 words or ?? I do not find concensus on this.
    Using ** `

    • <?php the_time(‘M d’) ?>. “><?php the_title() ?><?php the_excerpt(); ?>
    • ` ** I get the full post in every case where there is not a specific excerpt which makes a pretty large page! Ia using WP 2.3.3.
      Probably simple, but I have read all the forum topics and seems most, or many people, have the opposite problem!
      Thanks,

Viewing 1 replies (of 1 total)
  • Moderator Samuel Wood (Otto)

    (@otto42)

    www.remarpro.com Admin

    Unless you’ve done something specifically to disable it, yes, the_excerpt will indeed fake it (55 words) unless there is an excerpt already there for that post.

    This is done by having this line in the default-filters.php file:
    add_filter('get_the_excerpt', 'wp_trim_excerpt');

    And by the wp_trim_excerpt() function in the formatting.php file.

    Plugins and themes may have disabled it in your case. Check those.

Viewing 1 replies (of 1 total)
  • The topic ‘the_excerpt doesn’t excerpt’ is closed to new replies.