-
Home
-
GTM4Publishers – Smart content tracking for blogs, news sites and magazines
- Tips
How to Hide the "GTM4Publishers" Admin Menu
function plt_hide_gtm4publishers_menus() {
//Hide the "Settings → GTM4Publishers" menu.
remove_submenu_page('options-general.php', 'gtm4publishers');
}
add_action('admin_menu', 'plt_hide_gtm4publishers_menus', 11);
Where do I put this code?
How to Hide the "GTM4Publishers" Meta Box
function plt_hide_gtm4publishers_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "GTM4Publishers" meta box.
remove_meta_box('gtm4pubs_post_settings', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_gtm4publishers_metaboxes', 20);