How to Hide the "Sessions" Admin Menu

function plt_hide_wp_native_php_sessions_menus() {
	//Hide the "Tools → Sessions" menu.
	remove_submenu_page('tools.php', 'pantheon-sessions');
}

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

Where do I put this code?