How to Hide WP Full Picture Admin Menus

function plt_hide_full_picture_analytics_cookie_notice_menus() {
	//Hide the "WP Full Picture" menu.
	remove_menu_page('full_picture_tools');
	//Hide the "WP Full Picture → Modules" menu.
	remove_submenu_page('full_picture_tools', 'full_picture_tools');
	//Hide the "WP Full Picture → General settings" menu.
	remove_submenu_page('full_picture_tools', 'full_picture_main');
}

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

Where do I put this code?