Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nikschavan/474889f7e8c62db7e4492c1e856b42cf to your computer and use it in GitHub Desktop.
Save Nikschavan/474889f7e8c62db7e4492c1e856b42cf to your computer and use it in GitHub Desktop.
Make single post navigation to get links for posts in same category - Astra theme - https://wpastra.com/
<?php
function your_prefix_single_post_navigation_same_category( $args ) {
$args[ 'in_same_term' ] = true;
return $args;
}
add_filter( 'astra_single_post_navigation', 'your_prefix_single_post_navigation_same_category' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment