返回介绍

get_upload_iframe_src()

发布于 2017-09-11 00:41:34 字数 2099 浏览 967 评论 0 收藏 0

get_upload_iframe_src( string $type = null,  int $post_id = null,  string $tab = null )

description


参数

$type

(string) (Optional)

Default value: null

$post_id

(int) (Optional)

Default value: null

$tab

(string) (Optional)

Default value: null


返回值

(string)


源代码

File: wp-admin/includes/media.php

function get_upload_iframe_src( $type = null, $post_id = null, $tab = null ) {
	global $post_ID;

	if ( empty( $post_id ) )
		$post_id = $post_ID;

	$upload_iframe_src = add_query_arg( 'post_id', (int) $post_id, admin_url('media-upload.php') );

	if ( $type && 'media' != $type )
		$upload_iframe_src = add_query_arg('type', $type, $upload_iframe_src);

	if ( ! empty( $tab ) )
		$upload_iframe_src = add_query_arg('tab', $tab, $upload_iframe_src);

	/**
	 * Filters the upload iframe 源代码 URL for a specific media type.
	 *
	 * The dynamic portion of the hook name, `$type`, refers to the type
	 * of media uploaded.
	 *
	 * @since 3.0.0
	 *
	 * @param string $upload_iframe_src The upload iframe 源代码 URL by type.
	 */
	$upload_iframe_src = apply_filters( "{$type}_upload_iframe_src", $upload_iframe_src );

	return add_query_arg('TB_iframe', true, $upload_iframe_src);
}

Collapse full 源代码 code View on Trac


相关函数

Uses

  • wp-admin/includes/media.php: {$type}_upload_iframe_src
  • wp-includes/functions.php: add_query_arg()
  • wp-includes/link-template.php: admin_url()
  • wp-includes/plugin.php: apply_filters()

Used By

  • wp-admin/includes/post.php: _wp_post_thumbnail_html()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文