How to Hide the "Associate Image" Admin Menu

function plt_hide_associate_attachment_menus() {
	//Hide the "Tools → Associate Image" menu.
	remove_submenu_page('tools.php', 'associate-attachment');
}

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

Where do I put this code?