Tips on Customizing Wp Edit Password Protected – Create Password Protect Pages & Design Password Protected Form

How to Hide the "WP Edit password protected options" Admin Menu

function plt_hide_wp_edit_password_protected_menus() {
	//Hide the "Settings → WP Edit password protected options" menu.
	remove_submenu_page('options-general.php', 'wp-edit-pass.php');
}

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

Where do I put this code?

How to Hide the "Conditional Display" Meta Box

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

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

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