Search
 
SCRIPT & CODE EXAMPLE
 

PHP

acf gallery

<?php 
$images = get_field('gallery');

if( $images ): ?>
    <ul>
        <?php foreach( $images as $image ): ?>
            <li>
                <a href="<?php echo $image['url']; ?>">
                     <img src="<?php echo $image['sizes']['thumbnail']; ?>" alt="<?php echo $image['alt']; ?>" />
                </a>
                <p><?php echo $image['caption']; ?></p>
            </li>
        <?php endforeach; ?>
    </ul>
<?php endif; ?>
Comment

acf gallery

<?php 
$images = get_field('gallery');
$size = 'full'; // (thumbnail, medium, large, full or custom size)
if( $images ): ?>
    <ul>
        <?php foreach( $images as $image_id ): ?>
            <li>
                <?php echo wp_get_attachment_image( $image_id, $size ); ?>
            </li>
        <?php endforeach; ?>
    </ul>
<?php endif; ?>
Comment

acf gallery

<?php 
$images = get_field('gallery');
if( $images ): ?>
    <ul>
        <?php foreach( $images as $image ): ?>
            <li>
                <a href="<?php echo esc_url($image['url']); ?>">
                     <img src="<?php echo esc_url($image['sizes']['thumbnail']); ?>" alt="<?php echo esc_attr($image['alt']); ?>" />
                </a>
                <p><?php echo esc_html($image['caption']); ?></p>
            </li>
        <?php endforeach; ?>
    </ul>
<?php endif; ?>
Comment

PREVIOUS NEXT
Code Example
Php :: In excel.php line 164: Class "MaatwebsiteExcelExcel" not found 
Php :: php loop through list 
Php :: php get query string 
Php :: php all date formats 
Php :: random string in laravel 
Php :: laravel load view in variable 
Php :: php contains substring 
Php :: [DoctrineDBALDBALException]Unknown database type enum requested, DoctrineDBALPlatformsMySqlPlatform may not support it. 
Php :: wordpress get site title 
Php :: sustituir caracteres especiales php 
Php :: delete method laravel 
Php :: php create zip from folder 
Php :: php count amount of times a value appears in array 
Php :: how to show validation error in laravel 8 
Php :: how to force delete in laravel 8 
Php :: laravel validate file type 
Php :: db::statement in laravel 
Php :: how to find this day is holiday in php day 
Php :: php array longest string 
Php :: format money with commas in php 
Php :: php undefined function split 
Php :: how to add data to an object in php 
Php :: laravel validate enum field 
Php :: php mongodb version cmd 
Php :: count words in string php 
Php :: laravel timestamp 
Php :: php sort array by specific key 
Php :: composer create project laravel 
Php :: get image width and height in laravel 
Php :: php random integer 
ADD CONTENT
Topic
Content
Source link
Name
8+7 =