功能the_excerpt()
只是功能的回应get_the_excerpt()
:
function the_excerpt() {
echo apply_filters(\'the_excerpt\', get_the_excerpt());
}
如果您喜欢不输入摘录元框的回退,则从内容创建文本-
get_the_content()
. 您可以使用核心功能
wp_trim_words()
对于设置单词计数器,可以轻松设置所有内容的文本。例如:
$excerpt = get_the_content();
$excerpt = esc_attr( strip_tags( stripslashes( $excerpt ) ) );
$excerpt = wp_trim_words( $excerpt, $num_words = 55, $more = NULL );