Hi there, I just noticed after updating to the latest version of X that the article navigation arrows (chevrons) are missing on the single post view.
Currently I have a custom function to show the ‘chevrons’:
function x_entry_navigation() {
$stack = x_get_stack();
if ( $stack == ‘ethos’ ) {
$left_icon = ‘’;
$right_icon = ‘’;
} else {
$left_icon = ‘’;
$right_icon = ‘’;
}
$is_ltr = ! is_rtl();
$prev_post = get_adjacent_post( true, ‘’, false );
$next_post = get_adjacent_post( true, ‘’, true );
$prev_icon = ( $is_ltr ) ? $left_icon : $right_icon;
$next_icon = ( $is_ltr ) ? $right_icon : $left_icon;
?>
<?php if ( $prev_post ) : ?>
<?php echo $prev_icon; ?>
<?php endif; ?>
<?php if ( $next_post ) : ?>
<?php echo $next_icon; ?>
<?php endif; ?>