Limit wordpress title to 25 characters

I will show you how you can limit the post titles on the wordpress. Please use below code and check the output

<?php if (strlen(get_the_title()) > 25) { echo substr(get_the_title(),0, 25 ).’…’; } else { echo get_the_title();} ?>

I hope this solution will work for you!!