CPT Relationship (Taxonomy Field)
functions.php add_action( ‘elementor/query/related_industry_insights’, function( $query ) { if ( !is_singular(‘industries’) ) { return; } // Get selected terms from ACF taxonomy field $terms = get_field(‘related_industry_insights’); //your ACF field name if ( $terms ) { $term_ids = array_map( function( $term ) { return $term->term_id; }, $terms ); $query->set( ‘tax_query’, array( array( ‘taxonomy’ => ‘industry-category’, // your […]