Display all posts thumbnails when viewing a single post
You would have to get all the posts but the current one with a wp_query then loop through them and output their thumbnail. Something like this (Should work but untested) <?php //Set the current page id $current_id = get_the_id(); // Get all posts of a post type but the current post $the_query = new WP_Query( … Read more