• I cannot seem to find a solution to this.

    I figured out how to display the previous post thumbnail and title…Anyone know how to display the previous post excerpt?

Viewing 1 replies (of 1 total)
  • Thread Starter avexdesigns

    (@avexdesigns)

    ok, found it.

    <?php $prevPost = get_previous_post(true);
    if($prevPost) {?>
    <?php $prevthumbnail = get_the_post_thumbnail($prevPost->ID, array(100,70) );?>
    <?php previous_post_link('%link',"$prevthumbnail  <p>%title</p>", TRUE); ?>
    <?php } ?>
    <?php $excerpt = $prevPost->post_excerpt ? $prevPost->post_excerpt :apply_filters('get_the_excerpt', $prevPost->post_content); echo $excerpt; ?>
Viewing 1 replies (of 1 total)
  • The topic ‘previous post excerpt’ is closed to new replies.