Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

report query

// WP_Query arguments
$args = array(
	'post_type'              => array( 'system_platforms' ),
	'tax_query'              => array(
		array(
			'taxonomy'         => 'tax_sys_platforms',
		),
	),
	'meta_query'             => array(
		array(
			'key'     => 'acf_system-platform_Link',
		),
	),
);

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