Rumen Panchev
Rumen Panchev

Reputation: 498

Cut text from "the_content" function in WordPress

I'm using "the_content" function but the content is too long and i want to cut it without creating functions, filters etc.. Any ideas ?

Upvotes: 0

Views: 504

Answers (1)

user8230352
user8230352

Reputation: 1783

You can use quicktag <!--more--> in posts to tell the_content function where to cut the text.

Another way would be to use the_excerpt function instead of the_content. One reason to use the_excerpt is that you don't need to bother with <!--more--> quicktags.

Upvotes: 2

Related Questions