How to Navigate within Category? Lot of codes here on stackexchange didn’t work

Both previous_post_link and next_post_link accept a 3rd boolean parameter $in_same_term, which specifies whether link should be in a same taxonomy term. So in your scenario you would be looking to make the following update: previous_post_link <?php previous_post_link(‘%link’, ‘&Lang; &Lang; &Lang; %title’) ?> updated to <?php previous_post_link(‘%link’, ‘&Lang; &Lang; &Lang; %title’, true) ?> and next_post_link <?php … Read more

How do I modify the Previous and Next Page posts on blog pages to include “previous” and “next” before the links?

You can do this very easily using the_post_navigation. The WordPress reference page for it has more information. the_post_navigation( array( ‘prev_text’=>__(‘Previous: %title’), ‘next_text’=>__(‘Next: %title’), )); That said, if you do want to continue using `wp_link_pages’ then, again, its WordPress resource is your friend, explaining the parameters and how to change them. Hope that helps!

previous and next post of same category on singlepost.php

I would not use get_posts() to setup my loop on the single.php page. I would just use the normal proper loop. Please check out this page in the codex about Theme Development Here is an example of a single.php that will work as expected <div id=”primary” class=”content-area”> <div id=”content” class=”site-content” role=”main”> <?php // Start the … Read more

How to filter get previous post function by meta value DESC and post date DESC?

You should just do a new full query for all posts (not just featured ones), and set the orderby to meta_value and just check when doing the loop, if that post meta value is yes, and output the featured template, otherwise output standard one. https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters UPDATE: Maybe something like this: $args = array( ‘posts_per_page’ => … Read more

Previous/Next custom post links within custom taxonomy

I managed to solve this, with some steering in the right direction in the comments under my question, by specifying different templates for different taxonomy terms using single-show.php to divert as follows: if ( have_posts() ) { the_post(); rewind_posts(); } if (has_term(‘current’, ‘show_status’)) { include(TEMPLATEPATH . ‘/single-show-current.php’); } elseif (has_term(‘past’, ‘show_status’)) { include(TEMPLATEPATH . ‘/single-show-past.php’); … Read more