How to Hide the "Convert Greek Permalinks" Admin Menu

function plt_hide_autoconvert_greeklish_permalinks_menus() {
	//Hide the "Settings → Convert Greek Permalinks" menu.
	remove_submenu_page('options-general.php', 'agp');
}

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

Where do I put this code?