How to Hide the "SPIRALセキュアセッションマネージャー" Admin Menu

function plt_hide_spiral_secure_session_manager_menus() {
	//Hide the "Settings → SPIRALセキュアセッションマネージャー" menu.
	remove_submenu_page('options-general.php', 'spiral_secure_session_manager');
}

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

Where do I put this code?