Tips on Customizing StreamCast – Radio Player for WordPress

How to Hide the "StreamCast" Admin Menu

function plt_hide_streamcast_menus() {
	//Hide the "StreamCast" menu.
	remove_menu_page('streamcast');
}

add_action('admin_menu', 'plt_hide_streamcast_menus', 1000000000);

Where do I put this code?

How to Hide the "Radio Player Configuration" Meta Box

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

	//Hide the "Radio Player Configuration" meta box.
	remove_meta_box('sc_', $screen->id, 'normal');
}

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