Tips on Customizing WP-IG

How to Hide WP-IG Admin Menus

function plt_hide_wp_ig_menus() {
	//Hide the "Posts → Mentions" menu.
	remove_submenu_page('edit.php', 'edit-tags.php?taxonomy=mention');
	//Hide the "Instagram" menu.
	remove_menu_page('wp_ig');
}

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

Where do I put this code?

How to Hide the "Mentions" Meta Box

function plt_hide_wp_ig_metaboxes() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Hide the "Mentions" meta box.
	remove_meta_box('tagsdiv-mention', $screen->id, 'side');
}

add_action('add_meta_boxes', 'plt_hide_wp_ig_metaboxes', 20);