<?php
add_shortcode("whatDoYouWantToDo","whatDoYouWantToDo");
function whatDoYouWantToDo(){
$args= array(
"post_type"=>"qualitychecks",
"post_status"=>"publish",
"posts_per_page"=>10,
);
ob_start();
?>
<div class="whatDoYouWantToDo">
<?php
// The Query
query_posts( $args );
while ( have_posts() ) : the_post();
?>
<div>
<div class="thirdPartyLinkBoxes">
<aside>
<div class="iconBox">
<?php the_post_thumbnail(); ?>
</div>
<h6><?php the_title();?></h6>
<div class="hoverBox">
<article><?php the_content(); ?></article>
</div>
</aside>
</div>
</div>
<?php endwhile;
wp_reset_query();
?>
</div>
<?php
return ob_get_clean();
}