How to Hide the "Simply Excerpts Settings" Admin Menu

function plt_hide_simply_excerpts_menus() {
	//Hide the "Settings → Simply Excerpts Settings" menu.
	remove_submenu_page('options-general.php', 'sfly_excerpt_settings');
}

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

Where do I put this code?