its not working in wordpress 5.2.2
I think it is because of new editor
function remove_my_post_metaboxes() {
remove_meta_box( ‘categorydiv’,’post’,’normal’ ); // Categories Metabox
remove_meta_box( ‘tagsdiv-post_tag’,’post’,’normal’ ); // Tags Metabox
}
add_action(‘admin_menu’,’remove_my_post_metaboxes’);
Ok.
Thanks for your reply. Can you just provide me hooks for it(if any available for it) so that I can customize it.
Same issue happen with me also.. and I fixed it using @timdenty solution mentioned above.