Testing of this plugin has been temporarily suspended due to an error. It will automatically resume when a new plugin version is released.
function plt_hide_simple_podcasting_menus() {
//Hide the "Podcasts" menu.
remove_menu_page('edit-tags.php?taxonomy=podcasting_podcasts&podcasts=true');
}
add_action('admin_menu', 'plt_hide_simple_podcasting_menus', 11);
function plt_hide_simple_podcasting_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Podcasts" meta box.
remove_meta_box('podcasting_podcastsdiv', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_simple_podcasting_metaboxes', 20);