Remove Core Meta Box
-
Hi,
I’m using custom meta boxes for Featured Image and Page Attributes boxes. In order to use them, first I use the following function to remove core meta boxes :
function custom_page_attributes() { remove_meta_box( 'pageparentdiv', 'page', 'side' ); remove_meta_box( 'postimagediv', 'page', 'side' ); } add_action( 'add_meta_boxes', 'custom_page_attributes' );It’s been working perfectly so far but it doesn’t work with Gutenberg. How can I remove core meta boxes?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Remove Core Meta Box’ is closed to new replies.