我该如何移除Insert from URL
新Wordpress 3.5添加媒体弹出页面中的链接?在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\');
谁知道呢?