Need to add more words to excerpt

WordPress Themes, Plugins and HTML Templates Forums Prana WordPress Theme Need to add more words to excerpt

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #424
    Anonymous
    Guest

    I need to have the excerpt area of the blog have more words. Is there a way to do that?

    #1091
    admin
    Participant

    Hi,
    You can’t control the excerpt length via Theme Options at the moment. However, if you feel comfortable to edit a piece of code than follow the instructions,

    File: prana/lib/utils.php
    Line Number: ~ 680

    Edit the code:

    /** Sets the post excerpt length. */
    add_filter( ‘excerpt_length’, ‘kamn_excerpt_length’ );
    function kamn_excerpt_length( $length ) {
    return 20;
    }[/CODE]

    You may change the length [B]20[/B] with your own.

    Thanks[CODE]/** Sets the post excerpt length. */
    add_filter( ‘excerpt_length’, ‘kamn_excerpt_length’ );
    function kamn_excerpt_length( $length ) {
    return 20;
    }[/CODE]

    You may change the length 20 with your own.

    Thanks

    #1092
    Anonymous
    Guest

    Thank you! I got it.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.