How do I show the excerpt in the same post is page?
Example:
<?php
if ( the_excerpt() != '' ) {
echo $my_excerpt;
}
?>
But this does not work!
How do I show the excerpt in the same post is page?
Example:
<?php
if ( the_excerpt() != '' ) {
echo $my_excerpt;
}
?>
But this does not work!
You must be logged in to post a comment.
the_excerpt() will echo the excerpt and get_the_excerpt() will return it. So try something like this: