Hello, I’m trying to find out how to have Next/Previous Posts with Image at the end of all the Posts. Does anyone know how to do this? I found out how to do it without the Image, but really want the Featured Image to appear as a thumbnail. Thanks for any help!
I’m using Integrity 1 and this is what I currently use:
function add_entry_navigation(){
if( is_single() || x_is_portfolio_item() ) {
the_post_navigation( array(
‘next_text’ => ‘’ . ‘Next’ . ’ ’ .
‘’ . ‘Next post:’ . ’ ’ .
‘%title’,
‘prev_text’ => ‘’ . ‘Previous’ . ’ ’ .
‘’ . ‘Previous post:’ . ’ ’ .
‘%title’,
) );
}
}
add_action(‘x_before_view_global__comments-template’, ‘add_entry_navigation’ );