Tips on Customizing WP IMDB Shortcode

How to Hide WP IMDB Shortcode Admin Menus

function plt_hide_wp_imdb_shortcode_menus() {
	//Hide the "IMDB" menu.
	remove_menu_page('edit.php?post_type=ocimdb');
	//Hide the "IMDB → All IMDB" menu.
	remove_submenu_page('edit.php?post_type=ocimdb', 'edit.php?post_type=ocimdb');
	//Hide the "IMDB → Add New IMDB" menu.
	remove_submenu_page('edit.php?post_type=ocimdb', 'post-new.php?post_type=ocimdb');
}

add_action('admin_menu', 'plt_hide_wp_imdb_shortcode_menus', 15);

Where do I put this code?

How to Hide the "IMDB Data" Meta Box

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

	//Hide the "IMDB Data" meta box.
	remove_meta_box('ocimdb_metabox', $screen->id, 'normal');
}

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