How to Hide the "GeoRank" Admin Menu

function plt_hide_georank_top_places_lists_menus() {
	//Hide the "Settings → GeoRank" menu.
	remove_submenu_page('options-general.php', 'grtpl');
}

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

Where do I put this code?