I’m attempting to display MEC Events in a looper by a specific tag. The tag is Career Services. Here is a picture displaying the looper I’m trying to get to display events.
This is the query I created to pull the MEC events tagged with Career Services:
post_type=mec-events&tax_query%5B0%5D%5Btaxonomy%5D=post_tag&tax_query%5B0%5D%5Bfield%5D=slug&tax_query%5B0%5D%5Bterms%5D=career-services
It was generated from this WP_Query:
$args = array(
'post_type' => 'mec-events',
'tax_query' => array(
array(
'taxonomy' => 'post_tag',
'field' => 'slug',
'terms' => 'career-services',
),
),
);
var_dump( http_build_query( $args ) );
Am I missing something here?