Hi,
In X (Ethos stack) we always used the following code to use the previous and next buttons only in the same category:
if ( ! function_exists( 'x_entry_navigation' ) ) :
function x_entry_navigation() {
$stack = x_get_stack();
if ( $stack == 'ethos' ) {
$left_icon = '<i class="x-icon-chevron-left"></i>';
$right_icon = '<i class="x-icon-chevron-right"></i>';
} else {
$left_icon = '<i class="x-icon-arrow-left"></i>';
$right_icon = '<i class="x-icon-arrow-right"></i>';
}
$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;
?>
<div class="x-nav-articles">
<?php if ( $prev_post ) : ?>
<a href="<?php echo get_permalink( $prev_post ); ?>" title="<?php __( 'Previous Post', '__x__' ); ?>" class="prev">
<?php echo $prev_icon; ?>
</a>
<?php endif; ?>
<?php if ( $next_post ) : ?>
<a href="<?php echo get_permalink( $next_post ); ?>" title="<?php __( 'Next Post', '__x__' ); ?>" class="next">
<?php echo $next_icon; ?>
</a>
<?php endif; ?>
</div>
<?php
}
endif;
While this does still work, it loses the styling. I have tried to update the css classes out of Pro but no luck. Do you have any updated code for the Pro users? I think others might find this useful to…
(a link if needed: http://nleqib-vilikagni.savviihq.com/ploegchef-hardenberg/)
Thanks!

