Tips on Customizing Bitly URL Shortener

How to Hide the "Codehaveli Bitly" Admin Menu

function plt_hide_codehaveli_bitly_url_shortener_menus() {
	//Hide the "Tools → Codehaveli Bitly" menu.
	remove_submenu_page('tools.php', 'wbitly');
}

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

Where do I put this code?

How to Hide the "Bitly Short URL" Meta Box

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

	//Hide the "Bitly Short URL" meta box.
	remove_meta_box('wbitly-bitly-url-metabox', $screen->id, 'side');
}

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