Docs: Add function description and `@since` mention for `get_upload_iframe_src()`.
Follow-up to [14015]. See #55646. Built from https://develop.svn.wordpress.org/trunk@53766 git-svn-id: http://core.svn.wordpress.org/trunk@53325 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
007726602e
commit
85e2d1df55
|
@ -674,11 +674,16 @@ function media_buttons( $editor_id = 'content' ) {
|
|||
}
|
||||
|
||||
/**
|
||||
* Retrieves the upload iframe source URL.
|
||||
*
|
||||
* @since 3.0.0
|
||||
*
|
||||
* @global int $post_ID
|
||||
* @param string $type
|
||||
* @param int $post_id
|
||||
* @param string $tab
|
||||
* @return string
|
||||
*
|
||||
* @param string $type Media type.
|
||||
* @param int $post_id Post ID.
|
||||
* @param string $tab Media upload tab.
|
||||
* @return string Upload iframe source URL.
|
||||
*/
|
||||
function get_upload_iframe_src( $type = null, $post_id = null, $tab = null ) {
|
||||
global $post_ID;
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.1-alpha-53765';
|
||||
$wp_version = '6.1-alpha-53766';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue