您可以尝试以下操作:
function remove_media_tabs($strings) {
unset($strings["insertFromUrlTitle"]);
unset($strings["setFeaturedImageTitle"]);
unset($strings["createGalleryTitle"]);
unset($strings["uploadFilesTitle"]);
return $strings;
}
add_filter(\'media_view_strings\',\'remove_media_tabs\');
当您打开“插入媒体”屏幕时,这将删除“上载文件”和“从URL插入”链接,因此用户只能选择图像或媒体库中已有的任何内容。
有关可以使用unset执行的更多操作,请签入:wp includes/media。php文件。