type_url_form_file() – Handles retrieving the insert-from-URL form for a generic file.

You appear to be a bot. Output may be restricted

Description

Handles retrieving the insert-from-URL form for a generic file.

Usage

$string = type_url_form_file();

Parameters

Returns

string

Source

File name: wordpress/wp-admin/includes/deprecated.php
Lines:

1 to 4 of 4
function type_url_form_file() {
  _deprecated_function( type_url_form_file, '3.3.0', "wp_media_insert_url_form('file')" );
  return wp_media_insert_url_form( 'file' );
}
 

 View on GitHub View on Trac