How to Hide the "KIA Subtitle" Admin Menu

function plt_hide_kia_subtitle_menus() {
	//Hide the "Settings → KIA Subtitle" menu.
	remove_submenu_page('options-general.php', 'kia_subtitle');
}

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

Where do I put this code?