Warning: This function has been deprecated. Use wp_media_insert_url_form() instead.
type_url_form_audio() WordPress Function
The type_url_form_audio() function allows users to easily add an audio player to their WordPress site. This function can be used to play MP3, WAV, and other audio files. The audio player can be used to play audio files from a URL or from the WordPress media library.
type_url_form_audio() #
Handles retrieving the insert-from-URL form for an audio file.
Description
See also
Return
(string)
Source
File: wp-admin/includes/deprecated.php
function type_url_form_audio() { _deprecated_function( __FUNCTION__, '3.3.0', "wp_media_insert_url_form('audio')" ); return wp_media_insert_url_form( 'audio' ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.3.0 | Introduced. |