<?php $the_query = new WP_Query( array(\'post_type\' => \'movie\' ));
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
?>
<div>
<?php $term = the_terms($movie->ID,\'Genre\'); ?>
</div>
<?php }
/* Restore original Post Data */
wp_reset_postdata();
}
else {
// no posts found
}
?>