Skip to content

Instantly share code, notes, and snippets.

@n7studios
Created October 28, 2020 11:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save n7studios/e99ad39a94f254ce2e6be3b8bbb5cd6b to your computer and use it in GitHub Desktop.
Save n7studios/e99ad39a94f254ce2e6be3b8bbb5cd6b to your computer and use it in GitHub Desktop.
Media Library Organizer: Remove Menu Item
<?php
/**
* Plugin Name: Media Library Organizer: Remove Menu
* Plugin URI: https://wpmedialibrary.com
* Version: 0.0.1
* Author: WP Media Library
* Author URI: https://wpmedialibrary.com
* Description: Remove Media Library Organizer from the WordPress Admin Menu
*/
/**
* Remove Media Library Organizer from the WordPress Admin Menu
*
* @since 0.0.1
*/
function mlo_remove_admin_menu() {
remove_menu_page( 'media-library-organizer' );
}
add_action( 'media_library_organizer_admin_menu', 'mlo_remove_admin_menu' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment