Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_attached_media

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
3505      /**
3506       * Filter the list of media attached to the given post.
3507       *
3508       * @since 3.6.0
3509       *
3510       * @param array  $children Associative array of media attached to the given post.
3511       * @param string $type     Mime type of the media desired.
3512       * @param mixed  $post     Post ID or object.
3513       */
3514      return (array) apply_filters( 'get_attached_media', $children, $type, $post );
3515 }
3516
3517 /**
3518  * Check the content blob for an audio, video, object, embed, or iframe tags.
3519  *
3520  * @since 3.6.0
3521  *
3522  * @param string $content A string which might contain media data.
3523  * @param array  $types   An array of media types: 'audio', 'video', 'object', 'embed', or 'iframe'.