WordPress
0
Вклад в тег
<?php
$field = get_post_meta( get_the_ID(), 'multiupload', true );
$image = $field[0];
unset($field[0]);
// get first image in the gallery [1] for second, [2] for third, and so on.
if( $image ) {
echo "<a data-fancybox=\"image\" href='".$image."' class=\"bimgs img-reponsive\"><img src='".$image."'/></a><br><br>";
}
foreach ($field as $imgurl) {
if($imgurl != 'none'){
echo "<a data-fancybox=\"image\" href='".$imgurl."'><img class=\"mimgs\" src='".$imgurl."' height=\"100px\"/></a>";
}
}
?>