add_filter('get_the_excerpt', 'specific_no_wpautop', 9);
function specific_no_wpautop($content) {
// И здесь указываем слаги страниц на которых нужно отменить форматирование краткого описания
if (is_page('team') || is_page('partners')) { // or whatever other condition you like
remove_filter('get_the_excerpt', 'wp_trim_excerpt');
$content = get_the_content();
return preg_replace( '/\[[^\]]+\]/', '', $content );
} else {
return $content;
}
}