# automatic-youtube-gallery/2.6.3/public/templates/thumbnail.php

Automatic YouTube Gallery – Embed Auto-Updating YouTube Video Galleries, Feeds, Playlists &amp; Channels, version 2.6.3. 77 lines.

- Page: https://pluginprobe.com/plugins/automatic-youtube-gallery/2.6.3/code/public/templates/thumbnail.php
- Raw: https://pluginprobe.com/plugins/automatic-youtube-gallery/2.6.3/raw/public/templates/thumbnail.php
- Modified: 2025-04-04T08:35:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/automatic-youtube-gallery/2.6.3/code/public/templates/thumbnail.php#L10-L20`.

```php
<?php

/**
 * Thumbnail
 *
 * @link    https://plugins360.com
 * @since   1.0.0
 *
 * @package Automatic_YouTube_Gallery
 */

$single_url = ayg_get_single_video_url( $video, $attributes );
?>
<div class="ayg-thumbnail" data-id="<?php echo esc_attr( $video->id ); ?>" data-title="<?php echo esc_attr( $video->title ); ?>" data-url="<?php echo esc_attr( $single_url ); ?>">
    <div class="ayg-thumbnail-media">
        <?php
        // Image
        $image_url = '';
    
        if ( isset( $video->thumbnails->default ) ) {
            $image_url = $video->thumbnails->default->url;
        }    
        
        if ( 75 == (int) $attributes['thumb_ratio'] ) { // 4:3 ( default - 120x90, high - 480x360, standard - 640x480 )
            if ( isset( $video->thumbnails->high ) ) {
                $image_url = $video->thumbnails->high->url;
            }

            if ( isset( $video->thumbnails->standard ) ) {
                $image_url = $video->thumbnails->standard->url;
            }
        }    
        
        if ( 56.25 == (float) $attributes['thumb_ratio'] ) { // 16:9 ( medium - 320x180, maxres - 1280x720 )
            if ( isset( $video->thumbnails->medium ) ) {
                $image_url = $video->thumbnails->medium->url;
            }

            if ( isset( $video->thumbnails->maxres ) ) {
                $image_url = $video->thumbnails->maxres->url;
            }
        }

        $image_url = apply_filters( 'ayg_thumbnail_image_url', $image_url, $video, $attributes );
        
        echo sprintf(
            '<img src="%s" class="ayg-thumbnail-image" width="320" height="180" alt="%s" %s/>',
            esc_url( $image_url ),
            esc_attr( $video->title ),
            ( ! empty( $attributes['lazyload'] ) ? 'loading="lazy"' : '' )
        );

        // Play Icon
        echo sprintf(
            '<svg xmlns="http://www.w3.org/2000/svg" fill="white" width="40" height="40" viewBox="0 0 24 24" class="ayg-icon ayg-thumbnail-icon-play" title="%1$s" aria-label="%1$s"><path fill-rule="evenodd" d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm14.024-.983a1.125 1.125 0 0 1 0 1.966l-5.603 3.113A1.125 1.125 0 0 1 9 15.113V8.887c0-.857.921-1.4 1.671-.983l5.603 3.113Z" clip-rule="evenodd" /></svg>',
            esc_attr__( 'Play', 'automatic-youtube-gallery' )
        );

        // Now Playing
        echo sprintf( 
            '<div class="ayg-thumbnail-now-playing" style="display: none;">%s</div>', 
            esc_html__( 'Now Playing', 'automatic-youtube-gallery' ) 
        );
        ?>        
    </div>
    <div class="ayg-thumbnail-caption">
        <?php if ( ! empty( $attributes['thumb_title'] ) ) : ?> 
            <div class="ayg-thumbnail-title"><?php echo esc_html( ayg_trim_words( $video->title, (int) $attributes['thumb_title_length'] ) ); ?></div>
        <?php endif; ?> 
        <?php if ( ! empty( $attributes['thumb_excerpt'] ) && ! empty( $video->description ) ) : ?>
            <div class="ayg-thumbnail-excerpt"><?php echo wp_kses_post( ayg_trim_words( $video->description, (int) $attributes['thumb_excerpt_length'] ) ); ?></div>
        <?php endif; ?>
        <?php if ( ! empty( $attributes['player_description'] ) && ! empty( $video->description ) ) : ?>  
            <div class="ayg-thumbnail-description" style="display: none;"><?php echo wp_kses_post( ayg_get_player_description( $video, $attributes ) ); ?></div>
        <?php endif; ?>
    </div>           
</div>
```
