How to Hide the "ChatUP" Admin Menu

function plt_hide_chatup_menus() {
	//Hide the "Settings → ChatUP" menu.
	remove_submenu_page('options-general.php', 'chatup');
}

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

Where do I put this code?