Функция the_excerpt() выводит не отрывок, а весь контент
<?php if(have_posts()){
while (have_posts()) { the_post(); ?>
<div class="article">
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h3 class="display-4"><a href="<?php the_permalink(''); ?>"><?php the_title(); ?></a></h3>
<div class="lead">
<?php the_excerpt(); ?>
</div>
<p><a href="<?php the_permalink(''); ?>">Далее</a></p>
</div>
</div>
</div>
<?php
} // end While?>
<?php
} // конец if ?>