Excerpt not working
-
I am trying to get the excerpt from my posts.
In the posts themselves I inserted the <!–more–> tag.
My code:
<?php $args = array( 'numberposts' => '1' ); $recent_posts = wp_get_recent_posts( $args ); foreach( $recent_posts as $recent ){ echo '<h4><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a></h4>'; $excerpt = get_the_excerpt(); echo $excerpt; the_excerpt(); echo $recent["the_content('Read the rest of this entry »')"]; } ?>As you will see I have tried multiple option, but none seems to be working.
Can anyone please help?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Excerpt not working’ is closed to new replies.