How to Hide the "Iframely" Admin Menu

function plt_hide_iframely_menus() {
	//Hide the "Settings → Iframely" menu.
	remove_submenu_page('options-general.php', 'iframely');
}

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

Where do I put this code?