Get Adjacent Post By Tag

I would check out the Ambrosite Next/Previous Post Link Plus plugin which gives you a lot of arguments to pass to the “improved” next/prev link functions made by the plugin. I recently needed this type of functionality and this plugin worked great. With the plugin, you get to do stuff like this: <?php next_post_link_plus( array(‘in_cats’ … Read more

previous/next_post_link in the same sub-category?

If you’ll take a look at next_post_link Codex page, you’ll see it’s usage: <?php next_post_link( $format, $link, $in_same_term = false, $excluded_terms=””, $taxonomy = ‘category’ ); As you can see, third param is in_same_term and it’s default value is false. If you set it to true, then the function will return next post from same category. … Read more