Skip to content

Instantly share code, notes, and snippets.

@ArtfulPussycat
Created December 9, 2016 19:25
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 ArtfulPussycat/2492537b946c20bc65b79ce39c9fabb4 to your computer and use it in GitHub Desktop.
Save ArtfulPussycat/2492537b946c20bc65b79ce39c9fabb4 to your computer and use it in GitHub Desktop.
Hide "Visual Composer" Admin menu item in WordPress
function custom_menu_page_removing() {
remove_menu_page('vc-welcome'); //vc
}
add_action( 'admin_menu', 'custom_menu_page_removing' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment