Tips on Customizing Post2Podcast

How to Hide the "Post-to-Podcast" Admin Menu

function plt_hide_post2podcast_menus() {
	//Hide the "Post-to-Podcast" menu.
	remove_menu_page('post2podcast');
}

add_action('admin_menu', 'plt_hide_post2podcast_menus', 11);

Where do I put this code?

How to Hide the "Podcast Settings" Meta Box

function plt_hide_post2podcast_metaboxes() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Hide the "Podcast Settings" meta box.
	remove_meta_box('post2podcast_meta', $screen->id, 'side');
}

add_action('add_meta_boxes', 'plt_hide_post2podcast_metaboxes', 20);