How to Hide the "Indeed Apply" Admin Menu

function plt_hide_indeed_apply_shortcode_menus() {
	//Hide the "Settings → Indeed Apply" menu.
	remove_submenu_page('options-general.php', 'indeed-apply');
}

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

Where do I put this code?