if( isset( $album['artists'] ) && !empty( $album['artists'] ) && !is_serialized( $album['artists'] ) ) {
                    foreach ($album['artists'] as $artist) {
                        $buf[] = '<a class="artist" href="'.$artist->uri.'">'.$artist->name.'</a>';
                    }
                    echo implode(', ', $buf);