Increasing the excerpt length in Travelify ...

Can someone show me how to increase it?

Hi @revived,

I hope you are well today and thank you for your question.

You can try achieving this by using any of the following solutions.

http://beginnersbook.com/2013/09/change-post-excerpt-length-wordpress/

Best Regards,
Movin

I tried entering that code manually (to the bottom of functions.php between the php tags) and it did not change the length. Could it be that the function names are incorrect?

You can try achieving this by using the attached small plugin specially developed for you that contains some custom code.

function custom_excerpt_length( $length ) {
	return 60;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

Adjust the 60 in the above plugin code to match the number of words you wish to display in the excerpt.

I need to apologize. Adding that code directly to function.php in my child theme folder worked…I just needed to delete the cache because I’m using WP Super Cache.

Thank you again for the assistance!

You are most welcome here :slight_smile: