SOLVED
在函数中使用此代码。php文件
function custom_field_excerpt() {
global $post;
$text = get_field(\'description\'); //Replace \'your_field_name\'
if ( \'\' != $text ) {
$text = strip_shortcodes( $text );
$text = apply_filters(\'the_content\', $text);
$text = str_replace(\']]>\', \']]>\', $text);
$excerpt_length = 20; // 20 words
$excerpt_more = apply_filters(\'excerpt_more\', \' \' . \'[...]\');
$text = wp_trim_words( $text, $excerpt_length, $excerpt_more );
}
return apply_filters(\'the_excerpt\', $text);
}
然后使用标头中的所有post类型在自定义WP\\U查询中调用该函数,并调用WP\\U reset\\U postdata();当你做了,而不是使用一个小部件!