type_url_form_file()
Deprecated since 3.3.0. It is no longer supported and may be removed in future releases. Use wp_media_insert_url_form() instead.
Handles retrieving the insert-from-URL form for a generic file.
No Hooks.
Returns
String.
Usage
type_url_form_file();
Notes
Changelog
| Deprecated since 3.3.0 | Use wp_media_insert_url_form() |
type_url_form_file() type url form file code WP 7.0
function type_url_form_file() {
_deprecated_function( __FUNCTION__, '3.3.0', "wp_media_insert_url_form('file')" );
return wp_media_insert_url_form( 'file' );
}