/**
* Hide "Insert from URL" tab in media upload popup for everyone except admin
*
* @param $strings array List of media view strings
*
* @return array
*/
function custom_media_uploader( $strings ) {
if ( ! current_user_can( 'manage_options' ) ) {
unset( $strings['insertFromUrlTitle'] );
}
return $strings;
}
add_filter( 'media_view_strings', 'custom_media_uploader' );