Password

This field type renders a password field.

Parameters

Parameters are inherited from the Text field type, but the entered text is obscured.

Example

The code below renders a required password field with the custom_field name, "Custom field" label and "Custom text" placeholder. The minimum password length is 10 characters.

echo ( new HivePress\Fields\Password(
	[
		'name'        => 'custom_field',
		'label'       => 'Custom field',
		'placeholder' => 'Custom text',
		'min_length'  => 10,
		'required'    => true,
	]
) )->render();

Last updated