Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Technology Subpage

// WP_Query arguments
$args = array(
	'post_type'              => array( 'post_solutions' ),
	'has_password'           => false,
	'nopaging'               => true,
	'order'                  => 'DESC',
	'orderby'                => 'menu_order',
	'tax_query'              => array(
		'relation' => 'OR',
		array(
			'taxonomy'         => 'tax_technology',
			'field'            => 'slug',
			'include_children' => true,
		),
	),
);

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