How to remove “publish metabox” from each post type
If you’re familiar with Browser Developer Tools you can quickly find the metabox ID ( which is the container div id ). In this case it’s called submitdiv. We can remove it by using the remove_meta_box() function which has a format like this: remove_meta_box( ‘metabox_id’, ‘post_type’, ‘default_position’ ); remove_meta_box( ‘submitdiv’, ‘post’, ‘side’ ); Here’s a … Read more