在博客滚动中显示博客帖子的第一句话 时间:2016-05-03 作者:Zach Smith 有没有一种已知的方法可以显示博客文章内容的第一句话?我知道我可以用the_excerpt(); 但客户有一个奇怪的要求,只显示第一句话。如果有一个已知的方法,这将是伟大的知道。我很感激。 1 个回复 SO网友:cjbj 假设您想在第一个句号后切断一个字符串,您可以使用以下内容:$the-content = "This is the first sentence. And this is the second"; $cut-in-two = explode(\'.\', $the-content, 2); $first-sentence = $cut-in-two[0]; 文章导航