How to Hide the "Instagram Feed" Admin Menu

function plt_hide_elfsight_instagram_feed_menus() {
	//Hide the "Instagram Feed" menu.
	remove_menu_page('elfsight-instagram-feed');
}

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

Where do I put this code?