While creating our portfolio i'd like to make a dynamic header with the latest 5/6 featured images in a row. All these posts come out of the 'apps' custom post type.
<div id="header">
<div class="latest_post"> <img src="featured image" class="class-name" /></div>
<div class="second_post"> <img src="featured image" class="class-name" /> </div>
<div class="third_post"> <img src="featured image" class="class-name" /> </div>
<div class="fourth_post"> <img src="featured image" class="class-name" /> </div>
<div class="fifth_post"> <img src="featured image" class="class-name" /> </div>
</div>
How would I create something like this?
Thanks in advance.