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.
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.
You must be logged in to post a comment.
simply use this where ever you want to display your title with limited words
replace number 5 in above code with whatever number of words you need to display.
Regards.
If continue sign “…” needed at end of title
If continue sign “…” not needed at end of title
There is a built-in function for that:
wp_trim_words()
.If you want to trim the words depending on certain properties of the post, ask WP to pass the post ID to your callback. Here is an example for filtering by post type. But you can also check for associated terms, post age or author, and even post meta.
You can put any kind of limit on almost anything you like, you just need the correct filter