'product',
'posts_per_page' => '-1',
'orderby' => 'title',
'order' =>'ASC',
'meta_query' => array(
array(
'key' => 'team_members', // name of custom field
'value' => '"' . get_the_ID() . '"', // matches exaclty "123", not just 123. This prevents a match for "1234"
'compare' => 'LIKE'
)
)
));
?>
ALL WORKS
ID );
setup_postdata( $GLOBALS['post'] =& $post_object );
wc_get_template_part( 'content', 'product', $artist->ID );
?>