Related posts by taxonomy [duplicate]

Use post__not_in in your query.

$query = new WP_Query(array('post_type' => 'sculptures', 'post__not_in' => array($currentID), 'artist' => get_the_term_list( $post->taxonomies, 'artist' )));

tech