Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Blank WP_Query template

// WP_Query arguments
$args = array(
	'post_type'              => array( 'post' ),
	'post_status'            => array( 'published' ),
	'posts_per_page'         => '60',
	'order'                  => 'ASC',
	'tax_query'              => array(
		'relation' => 'OR',
		array(
			'taxonomy'         => 'Taxonomy',
			'terms'            => array( 'term1', 'term2', 'term3' ),
			'field'            => 'slug',
		),
	),
);

// The Query
$qry = new WP_Query( $args );

// The Loop
if ( $qry->have_posts() ) {
	while ( $qry->have_posts() ) {
		$qry->the_post();
		// do something
	}
} else {
	// no posts found
}

// Restore original Post Data
wp_reset_postdata();