Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

紅梅会トップページブログ

// WP_Query arguments
$args = array(
	'post_type'              => array( 'post' ),
	'nopaging'               => true,
	'posts_per_page'         => '3',
	'order'                  => 'DESC',
	'tax_query'              => array(
		'relation' => 'AND',
		array(
			'taxonomy'         => 'game_status',
			'terms'            => array( 'plane', ' on_game' ),
			'field'            => 'slug',
			'operator'         => 'IN',
		),
	),
);

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