Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: media_embedded_in_content_allowed_types

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
4421
4422      /**
4423       * Filters the embedded media types that are allowed to be returned from the content blob.
4424       *
4425       * @since 4.2.0
4426       *
4427       * @param string[] $allowed_media_types An array of allowed media types. Default media types are
4428       *                                      'audio', 'video', 'object', 'embed', and 'iframe'.
4429       */
4430      $allowed_media_types = apply_filters( 'media_embedded_in_content_allowed_types', array( 'audio', 'video', 'object', 'embed', 'iframe' ) );
4431
4432      if ( ! empty( $types ) ) {
4433           if ( ! is_array( $types ) ) {
4434                $types = array( $types );
4435           }
4436
4437           $allowed_media_types = array_intersect( $allowed_media_types, $types );
4438      }
4439