I'm getting list of image using foreach, but I don't want to display first image of array, but I don't know how to make it works. Here my code:
$portfolio_gallery_image = get_post_meta( get_the_ID(), "portfolio_gallery_image", true );
<div class="folio-gallery grid-masonry clearfix">
    <?php
    foreach ( $portfolio_gallery_image as $key => $image ){
    ?>
        <a class="folio-item col-3 ndSvgFill grid-item" href="<?php echo esc_url($image) ?>">
            <img src="<?php echo esc_attr($image) ?>" alt="portfolio">
        </a>
    <?php } ?>
</div>
This is array
Array
(
    [2098] => http://dione.thememove.com/wp-content/uploads/2016/04/11.jpg
    [2097] => http://dione.thememove.com/wp-content/uploads/2016/04/10.jpg
    [2062] => http://dione.thememove.com/wp-content/uploads/2016/06/f_08.jpg
    [2084] => http://dione.thememove.com/wp-content/uploads/2016/06/10.jpg
    [2096] => http://dione.thememove.com/wp-content/uploads/2016/04/9.jpg
    [2082] => http://dione.thememove.com/wp-content/uploads/2016/06/08.jpg
    [2094] => http://dione.thememove.com/wp-content/uploads/2016/04/7.jpg
)
Really appreciate your help. Thank you.
 
     
    