在 WordPress 如果我們使用 the_content() 會取得文章的完整內容,不過如果是要在文章列表顯示的話,這段就會太長,WordPress 本身還有提供一個 the_excerpt() 的方法,可以用來擷取完整內容的前 55 個字當摘要,如果要顯示摘要或者是要在文章列表使用比較短的內容時,建議可以使用 the_excerpt() 這個方法。
官方文件說明:
the_excerpt()
如果想要把取得的摘要再作進一步的應用,可以使用 get_the_excerpt() 把值給存起來後再作進一步使用,get_the_excerpt() 不像 the_excerpt() 會直接把值給顯示出來,像是如果我要把摘要的 html 標籤給去掉的話,可以像這樣寫:
echo strip_tags(get_the_excerpt());
官方文件說明:
get_the_excerpt()