Làm cách nào để xóa Insert from URLliên kết trong trang bật lên Wordpress 3.5 Add Media mới? Trong các phiên bản trước của Wordpress, điều này hoạt động tốt:
// 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');
Ai biết?