Is there a way to limit the word count of the post title?

I searched over the internet but found nothing.

All I know is, only the content of the post can be limited or excerpted.

4 s
4

simply use this where ever you want to display your title with limited words

<?php echo wp_trim_words( get_the_title(), 5 ); ?>

replace number 5 in above code with whatever number of words you need to display.

Regards.

Leave a Reply

Your email address will not be published. Required fields are marked *