Skip to content

Instantly share code, notes, and snippets.

@BruceMcKinnon
Created February 16, 2021 21:21
Show Gist options
  • Save BruceMcKinnon/35f12f2eb3273f14454a3d45b0b8bba1 to your computer and use it in GitHub Desktop.
Save BruceMcKinnon/35f12f2eb3273f14454a3d45b0b8bba1 to your computer and use it in GitHub Desktop.
Wordpress post navigation - only show posts fromt he same category
<?php the_post_navigation(array(
'prev_text' => '<span class="screen-reader-text">' . __( 'Previous Post', 'twentyseventeen' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Previous', 'twentyseventeen' ) . '</span> <span class="nav-title">%title</span>',
'next_text' => '<span class="screen-reader-text">' . __( 'Next Post', 'twentyseventeen' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Next', 'twentyseventeen' ) . '</span> <span class="nav-title">%title</span>', 'in_same_term' => true,
) ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment