Testing Suspended

Testing of this plugin has been temporarily suspended due to an error. It will automatically resume when a new plugin version is released.

Tips on Customizing Simple Podcasting

How to Hide the "Podcasts" Admin Menu

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);

Where do I put this code?

How to Hide the "Podcasts" Meta Box

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);