I want to display all related posts for a selected tag in WordPress
You’re limiting your query via posts_per_page to five results, to get all possible results use -1. Don’t use $wp_query as variable name, as it is associated to a global variable with the same name, which can lead to interferences. But that said, you absolutely don’t need a custom query in your tag.php. You are already … Read more