How to custom excerpt?

时间:2019-01-04 作者:Mike

我想让摘录只显示第二段或第三段。

我需要知道。如何使\\u extract()只显示第二段或第三段,并限制except的长度。

1 个回复
SO网友:Krystian Juraszek

您可以按点分解摘录的内容。例如:

$text = "Morbi consequat tempor augue. Nec fringilla eros auctor scelerisque. Etiam in ullamcorper tellus. Sed ac dui rutrum.";
$pieces = explode(".", $text);
echo $pieces[1]; // get second sentence = Nec fringilla eros auctor scelerisque
也许这可以帮助你。

相关推荐

Strip div From Excerpt

我在特定页面中有\\u extract(),我需要去掉一个div并保留文本,但只保留在该页面的摘录中。我相信我需要创建一个带有自定义摘录的函数,但我不知道该怎么做。测试了我在这里找到的几种解决方案,但没有任何效果。