Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_prepare_attachment_for_js

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
1415                'orientation' => $meta['height'] > $meta['width'] ? 'portrait' : 'landscape',
1416           );
1417
1418           $response = array_merge( $response, array( 'sizes' => $sizes ), $sizes['full'] );
1419      }
1420
1421      if ( function_exists('get_compat_media_markup') )
1422           $response['compat'] = get_compat_media_markup( $attachment->ID, array( 'in_modal' => true ) );
1423
1424      return apply_filters( 'wp_prepare_attachment_for_js', $response, $attachment, $meta );
1425 }
1426
1427 /**
1428  * Enqueues all scripts, styles, settings, and templates necessary to use
1429  * all media JS APIs.
1430  *
1431  * @since 3.5.0
1432  */
1433 function wp_enqueue_media( $args = array() ) {