• Resolved epic4life

    (@epic4life)


    Calling get_the_excerpt() when there is not one will cause WordPress to fake it. It gets the content and then cuts out everything but the first 55 words of it, adds a […] to it, and returns that.

    I found the above excerpt on a forum topic. I have searched all over an can’t find the answer to my question. Is there a way to change the default words displayed from 55 to “x”?

    I would love the help! Thanks!

Viewing 7 replies - 1 through 7 (of 7 total)
  • I don’t know about the excerpt, but you can do it with the_content_rss like this:

    <?php the_content_rss('', TRUE, '', 190); ?>

    The 190 is the number of words that you want to show

    If I understand correctly, you’ll have to use some extra php to do this and it may be better using the_content. See:

    http://wordpress.org/support/topic/91827?replies=5

    Ah – haven’t tried the_content_rss . . .

    Thread Starter epic4life

    (@epic4life)

    I am very new to php, the code I am trying to change is
    <p class="content"><?php echo strip_tags(get_the_excerpt(), '<a><strong>'); ?></p>

    I tried inserting the “the_content_rss” piece that jessn gave in place of the “get_the_excerpt” code, but nothing would show up…

    I am editing a template and this is the last little change I would like to make to simplify the featured sections article. It’s designed so you can put excerpts but I would prefer it to default to so many words of the content…

    Thanks for any help!

    Thread Starter epic4life

    (@epic4life)

    AHHHHH HAH!
    I found the file and where to change it to set wordpress’ default from 55 to whatever you need. Maybe I’m the only person who will ever need it, but here it is:
    in the wp-includes folder there is a file labeled formatting.php
    on line 845 is the following code:

    $excerpt_length = 55;

    change this value, and wah lah, it’s fixed! Thanks for your help!

    One caution, though, is that this file could change upon upgrade, so you’ll want to be careful.

    <?php the_content_rss(”, TRUE, ”, 190); ?>

    this works nicely – thanks!

    coachkip

    (@coachkip)

    I had great success with the_content_rss but now it shows my image description as part of my text. Is there anyway to strip of the caption without having to go in and delete it.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Get Content – only display so many words…’ is closed to new replies.