How to Hide the "Fast SEO Fix" Admin Menu

function plt_hide_fast_seo_fix_integration_menus() {
	//Hide the "Settings → Fast SEO Fix" menu.
	remove_submenu_page('options-general.php', 'fastseofix');
}

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

Where do I put this code?