' . oceanwp_icon( $prev_arrow, false ) . ' ' . oceanwp_theme_strings( 'owp-string-single-prev-post', false, 'oceanwp' ) . '%title';
$next_text = '' . oceanwp_icon( $next_arrow, false ) . ' ' . oceanwp_theme_strings( 'owp-string-single-next-post', false, 'oceanwp' ) . '%title';
$screen_rt = oceanwp_theme_strings( 'owp-string-single-screen-reader-rm', false, 'oceanwp' );
// Args.
if ( 'pub-date' === $term_tax ) {
$args = array(
'prev_text' => $prev_text,
'next_text' => $next_text,
'in_same_term' => false,
'screen_reader_text' => $screen_rt,
);
} else {
$args = array(
'prev_text' => $prev_text,
'next_text' => $next_text,
'in_same_term' => true,
'taxonomy' => $term_tax,
'screen_reader_text' => $screen_rt,
);
}
// Display Next/Prev navigation.
$args = apply_filters( 'ocean_single_post_next_prev_args', $args ); ?>