latest stuff | the author | contact

Remove media tabs from image upload in WordPress admin

2011-12-12 | Wordpress

This is a little trick I found for hiding the “choose from library” tabs in the pop-up image upload box in the WordPress admin area:

function remove_medialibrary_tab($tabs) {
   unset($tabs['library']);
   return $tabs;
}
add_filter('media_upload_tabs','remove_medialibrary_tab');

Just put this in your theme’s function file!

There are no comments yet, be the first!

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>