Skip to content

Instantly share code, notes, and snippets.

@chrisvanpatten
Created June 21, 2014 19:51
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 chrisvanpatten/477c238b4d185bcbb48b to your computer and use it in GitHub Desktop.
Save chrisvanpatten/477c238b4d185bcbb48b to your computer and use it in GitHub Desktop.
Remove a WordPress meta box permanently
<?php
/**
* vpm_remove_meta_box
*/
function vpm_remove_meta_box() {
remove_meta_box( 'postcustom', 'post', 'normal' );
}
add_action( 'add_meta_boxes', 'vpm_remove_meta_box' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment