Created
February 16, 2021 21:21
-
-
Save BruceMcKinnon/35f12f2eb3273f14454a3d45b0b8bba1 to your computer and use it in GitHub Desktop.
Wordpress post navigation - only show posts fromt he same category
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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