$args = array(
    'posts_per_page' => -1,
    'post_type'               => 'blerta_app_feature'
) ;
$my_query = new [WP_Query](http://codex.wordpress.org/Class_Reference/WP_Query)($args) ;

if ($my_query->[have_posts](http://codex.wordpress.org/Function_Reference/have_posts)()) : ?>
    <article id="app-features">
        <?php while ($my_query->[have_posts](http://codex.wordpress.org/Function_Reference/have_posts)()) : $my_query->[the_post](http://codex.wordpress.org/Plugin_API/Action_Reference/the_post)(); ?>

                <div class="feature-content">
                <h3><?php [the_title](http://codex.wordpress.org/Plugin_API/Filter_Reference/the_title)()  ?></h3>
                <?php  [the_content](http://codex.wordpress.org/Plugin_API/Filter_Reference/the_content)(); ?>
                </div>
                
                <div class="featured-image-container"><?php the_post_thumbnail()  ?></div>

        <?php endwhile; ?>
    </article> <!-- ENDS #app-features  -->