Skip to content

Instantly share code, notes, and snippets.

@AlexWebLab
Last active March 8, 2017 03:25
Show Gist options
  • Save AlexWebLab/a93bde1a2d3a942faacf7200cd5b2205 to your computer and use it in GitHub Desktop.
Save AlexWebLab/a93bde1a2d3a942faacf7200cd5b2205 to your computer and use it in GitHub Desktop.
Remove Multilingual Content Setup metabox on every post type edit page in WordPress admin
<?php
add_action('admin_head', 'disable_icl_metabox');
function disable_icl_metabox() {
$screen = get_current_screen();
remove_meta_box('icl_div_config',$screen->post_type,'normal');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment