Re: Need to add more words to excerpt

#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