Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: embed_thumbnail_id

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
23           }
24
25           /**
26            * Filters the thumbnail image ID for use in the embed template.
27            *
28            * @since 4.9.0
29            *
30            * @param int $thumbnail_id Attachment ID.
31            */
32           $thumbnail_id = apply_filters( 'embed_thumbnail_id', $thumbnail_id );
33
34           if ( $thumbnail_id ) {
35                $aspect_ratio = 1;
36                $measurements = array( 1, 1 );
37                $image_size   = 'full'; // Fallback.
38
39                $meta = wp_get_attachment_metadata( $thumbnail_id );
40                if ( ! empty( $meta['sizes'] ) ) {
41                     foreach ( $meta['sizes'] as $size => $data ) {