Tips on Customizing Custom Login

How to Hide Custom Login Admin Menus

function plt_hide_custom_login_menus() {
	//Hide the "Settings → Custom Login" menu.
	remove_submenu_page('options-general.php', 'custom-login');
	//Hide the "Settings →  Extensions" menu.
	remove_submenu_page('options-general.php', 'custom-login/extensions');
}

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

Where do I put this code?

How to Hide the "Frosty Media Feed" Dashboard Widget

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

	//Remove the "Frosty Media Feed" widget.
	remove_meta_box('frosty-media-feed', 'dashboard', 'normal');
}

add_action('wp_dashboard_setup', 'plt_hide_custom_login_dashboard_widgets', 20);