问题描述
如何删除新的 Wordpress 3.5 添加媒体弹出页面中的 Insert from URL
链接?在早期版本的 Wordpress 中,这很好:
// removes URL tab in image upload for post
function remove_media_library_tab($tabs) {
if (isset($_REQUEST['post_id'])) {
$post_type = get_post_type($_REQUEST['post_id']);
if ('premium' == $post_type)
unset($tabs['library']);
unset($tabs['type_url']);
}
return $tabs;
}
add_filter('media_upload_tabs', 'remove_media_library_tab');
谁知道?
最佳解决方案
这应该工作:
add_filter( 'media_view_strings', 'cor_media_view_strings' );
/**
* Removes the media 'From URL' string.
*
* @see wp-includes|media.php
*/
function cor_media_view_strings( $strings ) {
unset( $strings['insertFromUrlTitle'] );
return $strings;
}
次佳解决方案
新 WP 中的默认选项卡数组的代码在 media.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);
}
如果您只想从默认 URL 中删除上传,您可以将您的功能更改为:
// removes URL tab in image upload for post
function remove_media_library_tab($tabs) {
unset($tabs['type_url']);
return $tabs;
}
add_filter('media_upload_tabs', 'remove_media_library_tab');
没有测试,但它应该工作正常。
编辑:不工作,因为这个数组用在别的地方。如果你想要删除链接,你可以使用这个工作:
function remove_media_library_tab(){
?>
<style>
.media-menu a:last-child{ display:none}
</style>
<?php
}
add_action('admin_head', 'remove_media_library_tab');
参考文献
注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。