How to Hide the "Media License" Admin Menu

function plt_hide_media_license_menus() {
	//Hide the "Tools → Media License" menu.
	remove_submenu_page('tools.php', 'media_license');
}

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

Where do I put this code?