How to Hide the "Filled In" Admin Menu

function plt_hide_filled_in_menus() {
	//Hide the "Tools → Filled In" menu.
	remove_submenu_page('tools.php', 'filled_in.php');
}

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

Where do I put this code?