Skip to content

Instantly share code, notes, and snippets.

@ajithrn
Created August 27, 2016 21:42
Show Gist options
  • Save ajithrn/f96a1368bd6426c0f6c1fc17ce2fe5b9 to your computer and use it in GitHub Desktop.
Save ajithrn/f96a1368bd6426c0f6c1fc17ce2fe5b9 to your computer and use it in GitHub Desktop.
WP: Remove Rev Slider metabox
/**
* Helper for removing the Revslider Metabox from being on every CPT edit screen
* Modified for sagetheme (roots.io), place in the lib/extras.php
* Ref: https://gist.github.com/DevinWalker/ee9d4e53883460c6bbb8
*
* @param $post_type
*/
function remove_revslider_metabox($post_type)
{
add_action('do_meta_boxes', function () use ($post_type) {
remove_meta_box('mymetabox_revslider_0', $post_type, 'normal');
});
}
add_action('registered_post_type', __NAMESPACE__.'\\remove_revslider_metabox');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment