Created
May 24, 2017 08:36
-
-
Save am3000/5c9ab61b2ed240d355c3c612e49443eb to your computer and use it in GitHub Desktop.
WP remove themify meta boxes on custom post type
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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