function wp_get_attachment_image_sizes( $attachment_id, $size = 'medium', $image_meta = null ) {
    $image = wp_get_attachment_image_src( $attachment_id, $size );

    if ( ! $image ) {
        return false;