Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Query general

busca posts

// WP_Query arguments
$args = array(
	'post_type'              => array( 'wpdmpro' ),
	'post_status'            => array( 'publish' ),
	'tax_query'              => array(
		array(
			'taxonomy'         => 'wpdmcategory',
			'field'            => 'slug',
			'operator'         => 'IN',
			'include_children' => true,
		),
		array(
			'taxonomy'         => 'post_tag',
			'field'            => 'slug',
			'operator'         => 'IN',
			'include_children' => true,
		),
	),
);

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