Tips on Customizing ou.gd: WordPress to Twitter

How to Hide the "ou.gd" Admin Menu

function plt_hide_ougd_wordpress_to_twitter_menus() {
	//Hide the "Settings → ou.gd" menu.
	remove_submenu_page('options-general.php', 'ougd');
}

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

Where do I put this code?

How to Hide the "ou.gd" Meta Box

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

	//Hide the "ou.gd" meta box.
	remove_meta_box('yourlsdiv', $screen->id, 'side');
}

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