How to Hide the "Elegant Visitor Counter" Admin Menu

function plt_hide_elegant_visitor_counter_menus() {
	//Hide the "Settings → Elegant Visitor Counter" menu.
	remove_submenu_page('options-general.php', 'evc_settings');
}

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

Where do I put this code?