Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

mysnippet

// WP_Query arguments
$args = array(
	'post_status'            => array( 'publish' ),
	'order'                  => 'ASC',
	'orderby'                => 'date',
	'tax_query'              => array(
		'relation' => 'AND',
		array(
			'taxonomy'         => 'custom_magazine',
			'terms'            => 'entipi-ekdosi',
			'field'            => 'slug',
			'operator'         => 'IN',
		),
		array(
			'taxonomy'         => 'custom_issue',
			'terms'            => 'entipi-ekdosi-28-10-2017',
			'field'            => 'slug',
			'operator'         => 'IN',
		),
	),
);

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

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

// Restore original Post Data
wp_reset_postdata();