我想知道是否有可能从每篇文章中摘录一段,从每篇文章中抓取第一段。我目前正在使用ACF插件,并且有自定义的帖子类型和自定义字段
这是我的代码:
function custom_field_excerpt() {
global $post;
$text = get_field(\'news\');
if ( \'\' != $text ) {
$text = strip_shortcodes( $text );
$text = apply_filters(\'the_content\', $text);
$text = str_replace(\']]>\', \']]>\', $text);
$excerpt_length = 20; // 20 words
$text = wp_trim_words( $text, $excerpt_length, $excerpt_more );
}
return apply_filters(\'the_excerpt\', $text);
}
这很好,但它只删减了前20个单词(或者不管你指定了多少个单词),我正试图调整它,将每个帖子的第一段拉进去,而不是前20个单词。这有可能吗?