{$type}_upload_iframe_src WordPress Filter Hook
The {$type}_upload_iframe_src hook allows you to modify the iframe src for the upload media modal. This can be useful for adding extra security or for changing the iframe src to a custom media uploader.
apply_filters( "{$type}_upload_iframe_src", string $upload_iframe_src ) #
Filters the upload iframe source URL for a specific media type.
Description
The dynamic portion of the hook name, $type
, refers to the type of media uploaded.
Possible hook names include:
image_upload_iframe_src
media_upload_iframe_src
Parameters
- $upload_iframe_src
(string)The upload iframe source URL.
Source
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |