File: /var/www/meysamkiani.com/root/wp-content/themes/author/content/post-nav.php
<?php
global $post;
$previous_post = get_adjacent_post( false, '', true );
$previous_text = esc_html__( 'Previous Post', 'author' );
if ( $previous_post == '' ) {
$previous_text = esc_html__( 'No Older Posts', 'author' );
if ( get_option( 'show_on_front' ) == 'page' ) {
$previous_url = get_permalink( get_option( 'page_for_posts' ) );
} else {
$previous_url = get_home_url();
}
$previous_link = '<a href="' . esc_url( $previous_url ) . '">' . esc_html__( 'Return to Blog', 'author' ) . '</a>';
}
$next_post = get_adjacent_post( false, '', false );
$next_text = esc_html__( 'Next Post', 'author' );
if ( $next_post == '' ) {
$next_text = esc_html__( 'No Newer Posts', 'author' );
if ( get_option( 'show_on_front' ) == 'page' ) {
$next_url = get_permalink( get_option( 'page_for_posts' ) );
} else {
$next_url = get_home_url();
}
$next_link = '<a href="' . esc_url( $next_url ) . '">' . esc_html__( 'Return to Blog', 'author' ) . '</a>';
}
?>
<nav class="further-reading">
<div class="previous">
<span><?php echo esc_html( $previous_text ); ?></span>
<?php
if ( $previous_post == '' ) {
echo $previous_link;
} else {
previous_post_link( '%link' );
}
?>
</div>
<div class="next">
<span><?php echo esc_html( $next_text ); ?></span>
<?php
if ( $next_post == '' ) {
echo $next_link;
} else {
next_post_link( '%link' );
}
?>
</div>
</nav>