saragreenlaw
4/7/2017 - 5:51 PM

previous & next

previous & next

function ja_prev_next_post_nav() {
	if ( is_singular( 'post' ) ) {
		echo '<div class="prev-next-navigation">';
			previous_post_link( '<div class="previous">Previous article: %link</div>', '%title' );
			next_post_link( '<div class="next">Next Post: %link</div>', '%title' );
		echo '</div>';
	}
}
add_action( 'genesis_before_comments', 'ja_prev_next_post_nav' );