How to hide meta box from pages / posts
-
Hey folks,
Im trying to remove the meta-box from pages with remove_meta_box core-function. According how the plugin adds the box
// Add meta box add_meta_box( 'A2A_SHARE_SAVE_meta', $title, 'A2A_SHARE_SAVE_meta_box_content', $post_type, 'advanced', 'high' );
this function should work
function remove_share_box() { remove_meta_box('A2A_SHARE_SAVE_meta', 'page', 'advanced'); } add_action( 'admin_menu', 'remove_share_box' );
but it doesnt. How can I achieve this?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to hide meta box from pages / posts’ is closed to new replies.