I try to add post excerpt in a page but not work I added in wordpress functions.php
add_post_type_support( 'page', 'excerpt' );
I enabled excerpt in this page
this code that I write to get excerpt post
$recent_posts = wp_get_recent_posts('numberposts=5&order=DESC');
foreach( $recent_posts as $recent ):?>
<h3>
<a href="<?php echo get_permalink($recent["ID"]);?>">
<?php echo $recent['post_title'];?>
</a>
</h3>
<p><?php
// the_excerpt(); display post excerpt here
?></p>
<?php endforeach; ?>