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