Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Query – dos post types

Query con dos post types (video y post) y categoría España

// WP_Query arguments
$args = array(
	'post_type'              => array( 'video', 'post' ),
	'nopaging'               => false,
	'order'                  => 'DESC',
	'orderby'                => 'menu_order',
);

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