WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
3723 |
|
3724 | /** |
3725 | * Filters the embedded media types that are allowed to be returned from the content blob. |
3726 | * |
3727 | * @since 4.2.0 |
3728 | * |
3729 | * @param array $allowed_media_types An array of allowed media types. Default media types are |
3730 | * 'audio', 'video', 'object', 'embed', and 'iframe'. |
3731 | */ |
3732 | $allowed_media_types = apply_filters( 'media_embedded_in_content_allowed_types', array( 'audio', 'video', 'object', 'embed', 'iframe' ) ); |
3733 |
|
3734 | if ( ! empty( $types ) ) { |
3735 | if ( ! is_array( $types ) ) { |
3736 | $types = array( $types ); |
3737 | } |
3738 |
|
3739 | $allowed_media_types = array_intersect( $allowed_media_types, $types ); |
3740 | } |
3741 |
|