Home › Forums › Lite Version › Full Text instead of Summary › Reply To: Full Text instead of Summary
September 5, 2017 at 4:10 pm
#18646
Keymaster
Hi Eduardw,
You can add this in your functions.php
add_filter('excerpt_length', 'my_excerpt_length');
function my_excerpt_length($length) {
if (is_home()):
return 9999999;
else:
return 20;
endif;
}
This should do for you.
Thanks