标签: php wordpress
我正在使用“the_content”函数,但内容太长,我想在不创建函数,过滤器等的情况下剪切它。任何想法?
答案 0 :(得分:2)
您可以在帖子中使用quicktag <!--more-->告诉the_content功能在哪里剪切文字。
<!--more-->
另一种方法是使用the_excerpt函数而不是the_content。使用the_excerpt的一个原因是您不需要打扰<!--more--> quicktags。
the_content
the_excerpt