Tips on Customizing AddToAny Share Buttons

How to Hide the "AddToAny" Admin Menu

function plt_hide_add_to_any_menus() {
	//Hide the "Settings → AddToAny" menu.
	remove_submenu_page('options-general.php', 'addtoany');
}

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

Where do I put this code?

How to Hide the "AddToAny" Meta Box

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

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

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