Galleries of images attached to posts
If you plan on using WP’s built-in image custom fields, include this query on your single-project.php (assuming galleries will only be called on single project pages): // this will get all images attached to that specific post $imagequery = new WP_Query( array( ‘post_type’ => ‘attachment’, ‘post_mime_type’ => ‘image/jpeg’, ‘post_parent’ => $post->ID )); if ($imagequery->have_posts()) { … Read more