// The Query
// $the_query = new WP_Query( $args );
// if ( $the_query ->have_posts() ) {
// while ( $the_query->have_posts() ) {
// $the_query->the_post();
// echo get_the_title();
// echo the_post_thumbnail_url();
// the_content();
// echo get_the_permalink();
// }
// /* Restore original Post Data */
// wp_reset_postdata();
// } else {
// // no posts found
// } get_footer();
?>