我试图弄清楚是否有可能从每个帖子中获取摘录,从每个帖子中获取第一段。我目前正在使用 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 个单词。这是可能吗?