将内容限制为多个单词有点棘手。限制字符数要容易得多,而且已经内置到WordPress中。
您可以使用the_excerpt()
和get_the_excerpt()
用于限制帖子内容开头的字符数。第一个链接中的示例显示了如何更改所选字符数。
add_filter( \'excerpt_length\', \'custom_excerpt_length\', 999 );
/**
* Change the excerpt length to 20 characters.
*/
function custom_excerpt_length() {
return 20;
}
您还可以在帖子中指定准确的摘录。这允许您创建一个自定义摘录,以更好地描述文章,而不是前几个字符。