Skip to content

Instantly share code, notes, and snippets.

@am3000
Created May 24, 2017 08:36
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 am3000/5c9ab61b2ed240d355c3c612e49443eb to your computer and use it in GitHub Desktop.
Save am3000/5c9ab61b2ed240d355c3c612e49443eb to your computer and use it in GitHub Desktop.
WP remove themify meta boxes on custom post type
add_action( 'do_meta_boxes','my_removeThemifyMetaboxes');
function my_removeThemifyMetaboxes(){
remove_meta_box( 'themify-meta-boxes', 'my-custom-post-type', 'normal' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment