How to Hide the "Instagram Widget" Admin Menu

function plt_hide_social_images_widget_menus() {
	//Hide the "Settings → Instagram Widget" menu.
	remove_submenu_page('options-general.php', 'social-images-widget');
}

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

Where do I put this code?