有一个过滤器叫做media_upload_default_tab
您可以使用它来执行此操作。
<?php
add_filter(\'media_upload_default_tab\', \'wpse74422_switch_tab\');
function wpse74422_switch_tab($tab)
{
return \'library\';
}
您可以将设置为任意值——假设该选项卡存在。选项卡键本身可以在函数中找到
media_upload_tabs
.
<?php
/**
* Defines the default media upload tabs
*
* @since 2.5.0
*
* @return array default tabs
*/
function media_upload_tabs() {
$_default_tabs = array(
\'type\' => __(\'From Computer\'), // handler action suffix => tab text
\'type_url\' => __(\'From URL\'),
\'gallery\' => __(\'Gallery\'),
\'library\' => __(\'Media Library\')
);
return apply_filters(\'media_upload_tabs\', $_default_tabs);
}
所以
type
(原始违约),
type_url
,
gallery
,
library
任何自定义选项卡都可以使用。这是上面的
in plugin form.
最后一点注意:WordPress 3.5中的媒体工作流程正在发生重大变化,这将不再有效。然而,好消息是,新媒体popover的速度要快得多,您的问题不太可能成为问题。