Skip to main content
Developer in WordPress t-shirt developing

Adding a Password Input to WordPress Settings

In previous articles in the WordPress Settings series we covered adding a settings page with a few basic fields. Those articles cover the steps to build a settings form with three text inputs, a textarea input field, and a WP Editor field. This article builds on the previous articles by adding a Password field to our existing settings.

You may be asking why you need a Password field in your settings. I find the password field useful when adding fields for API Keys or other API authentication settings. So let’s dive in!

Adding the Defaults

In the previous article we covered how every WordPress setting should have a default value assigned and how to add the defaults to your code. Below is an extended version of that code that includes the new default settings for our Password input.

<?php
  
function ltdi_register_settings() {

    /* Code for settings section goes here. */

    if ( false == get_option( 'ltdi_theme_settings' ) ) {
        $defaults = [
            'setting_field_one' 	   => '',
            'setting_field_two' 	   => '',
            'setting_field_three'.   => '', /* removed code */
            'setting_textarea_field'  => '',
            'setting_wp_editor_field' => '',
            'setting_password_field' => '', /* new code */
        ];
        add_option( 'ltdi_theme_settings', $defaults );
    }
}
add_action( 'admin_init', 'ltdi_register_settings' );
  1. We continue editing the “ltdi_register_settings” function from the previous article by adding a key/value pair for our setting_password_field.
  2. The default value should be an empty string.
  3. Like the previous article, if no settings are found, the get_options() function will return false.
  4. When a false value is returned from get_option() we use the function add_option(), passing our settings unique identifier and the array of defaults as the first and second parameters respectively.  Doing so will save the default settings to the database.

Adding the Password Input

As mentioned in the previous article’s section “Adding the Setting Input Fields”, each field is added with a combination of the built-in function “add_settings_field” and a callback function for the specific field type.

For the password input we start with the built-in function add_settings_field, using the arguments listed below.

The first argument is the field $name.  It is a required unique identifier for the setting. It should be a single string value usually formatted with underscores to combine multiple words. In this case it is “setting_password_field”.

The second argument is the field $title. It should be a string value formatted for display to the WordPress user.  For this tutorial we will use the string “New Password Setting”.

The third argument is the name of the $callback function that outputs the form input’s HTML. Because we are implementing a Password input we will be using the name “ltdi_get_password_input”.

The fourth argument tells WordPress what settings group to add our setting to. For this tutorial we will use the string “ltdi_theme_settings” which is the name of our settings group.

The fifth argument tells WordPress what section to associate our setting with. For this tutorial we will use the string “ltdi_theme_settings_section” which is the name of our settings section.

For the last argument we use an array with two key/value pairs, one with the key “label_for”, and one with the key “class”. The “label_for” key is used by WordPress to create HTML label tags around the form label. The provided value is used as the “for” attribute in that tag. The “class” key is used by WordPress to add a custom CSS Class attribute to the wrapping <tr> HTML tags around the input.

<?php

  function ltdi_register_settings() {
      
    /* Code for settings section adding defaults goes here. */
    
    /* Code that adds the text fields in the previous article goes here. */
   
   add_settings_field(
       'setting_password_field',
       'New Password Setting',
       'ltdi_get_password_input',
       'ltdi_theme_settings',
       'ltdi_theme_settings_section',
       [
           'label_for' => 'setting_password_field',
           'class' => 'setting_password_field'
       ]  
   );

Adding the Password Callback

Although the field has been added to WordPress, before it can be used we need to create the callback function to output the password input’s HTML on the screen.

<?php

function ltdi_get_password_input($args) {
    $settings = \get_option('ltdi_theme_settings');
	$value    = $settings[$args['label_for']] ?? '';

	printf(
		'<input type="password" id="%1$s" name="ltdi_theme_settings[%1$s]" value="%2$s" />',
		$args['label_for'],
		$value
	);
}
  1. We start by declaring the function “ltdi_get_password_input”.
  2. We then use the get_option() function with the argument “ltdi_theme_settings” to retrieve all our settings.
  3. We check the existence of the field’s value using the Null Coalescing Operator, assigning its value or an empty string to the variable $value.
  4. We finallly use the printf() function to print the password HTML input tag, filling in the ID and name attributes with the “label_for” argument, and the value attributes with our previously assigned $value variable.

Putting It All Together

Here is the final code including code from the previous article. What is added in this article is indicated with comment “new code”. What has been removed is indicated with the comment “removed code”. When this code is added to your WordPress theme’s function file or your plugin’s main file, you should have a functioning WordPress settings page with two text fields, one textarea field, one WordPress Editor field, and our new password field.

<?php

function ltdi_register_settings() {
    
    add_settings_section(
        'ltdi_theme_settings_section',
        __('Theme Settings', 'ltdi'),
        'ltdi_section_introduction'
        'ltdi_theme_settings'
    );

    if ( false == get_option( 'ltdi_theme_settings' ) ) {
        $defaults = [
            'setting_field_one' => '',
            'setting_field_two' => '',
            'setting_field_three' => '', /* removed code */
            'setting_textarea_field' => '',
            'setting_wp_editor_field' => '',
            'setting_password_field' => '', /* new code */
        ];
        add_option( 'ltdi_theme_settings', $defaults );
    }

    add_settings_field(
        'setting_field_one',
        __('Setting Field One', 'ltdi'),
        'ltdi_get_text_input',
        'ltdi_theme_settings',
        'ltdi_theme_settings_section',
        [
	        'label_for' => 'setting_field_one',
	        'class' => 'setting_field_one'
        ]	
    );

    add_settings_field(
        'setting_field_two',
        __('Setting Field Two', 'ltdi'),
        'ltdi_get_text_input',
        'ltdi_theme_settings',
        'ltdi_theme_settings_section',
        [
            'label_for' => 'setting_field_two',
	        'class' => 'setting_field_two'
        ]
    );

    /* Removed Code */
    add_settings_field(
        'setting_field_three',
        __('Setting Field Three', 'ltdi'),
        'ltdi_get_text_input',
        'ltdi_theme_settings',
        'ltdi_theme_settings_section',
        [
	        'label_for' => 'setting_field_three',
	        'class' => 'setting_field_three'
        ]	
    );

    /* New Code */
    add_settings_field(
       'setting_password_field',
       'New Password Setting',
       'ltdi_get_password_input',
       'ltdi_theme_settings',
       'ltdi_theme_settings_section',
       [
           'label_for' => 'setting_password_field',
           'class' => 'setting_password_field'
       ]  
    );

    add_settings_field(
        'setting_textarea_field',
        __('New Textarea Setting', 'ltdi'),
        'ltdi_get_textarea_input',
        'ltdi_theme_settings',
        'ltdi_theme_settings_section',
        [
	        'label_for' => 'setting_textarea_field',
	        'class' => 'setting_textarea_field'
        ]	
    );

    add_settings_field(
        'setting_wp_editor_field',
        __('New WP Editor Setting', 'ltdi'),
        'ltdi_get_editor_input',
        'ltdi_theme_settings',
        'ltdi_theme_settings_section',
        [
	        'label_for' => 'setting_wp_editor_field',
	        'class' => 'setting_wp_editor_field'
        ]	
    );

    register_setting(
        'ltdi_theme_settings',
        'ltdi_theme_settings',
        'ltdi_setting_sanitization'
    );
}
add_action( 'admin_init', 'ltdi_register_settings' );


function ltdi_section_introduction() {
    echo 'This is the Section Introduction'
}


function ltdi_get_text_input($args){
    $settings = \get_option('ltdi_theme_settings');
    $value = !empty($settings[$args['label_for']]) ?: '';

    printf(
        '<input type="text" id="%1$s" name="ltdi_theme_settings[%1$s]" value="%2$s" />',
        $args['label_for'],
        $value
    );
};


function ltdi_get_textarea_input($args) {
   $settings = \get_option('ltdi_theme_settings');
   $value    = !empty($settings[$args['label_for']]) ?: '';

   printf(
       '<textarea id="%1$s" name="ltdi_theme_settings[%1$s]" rows="8" cols="100">%2$s</textarea>',
       $args['label_for'],
       $value
   );
}


function ltdi_get_editor_input($args) {
   $settings = \get_option('ltdi_theme_settings');
   $value   = !empty($settings[$args['label_for']]) ? $settings[$args['label_for']] : '';
   $editor_id = 'ltdi_theme_settings[' . $args['label_for'] . ']';
   
   $options = [
		'media_buttons' => false
   ];

   echo \wp_editor($value, $editor_id, $options);
}

/* New Code */
function ltdi_get_password_input($args) {
    $settings = \get_option('ltdi_theme_settings');
	$value    = $settings[$args['label_for']] ?? '';

	printf(
		'<input type="password" id="%1$s" name="ltdi_theme_settings[%1$s]" value="%2$s" />',
		$args['label_for'],
		$value
	);
}


function ltdi_setting_sanitization($input) {
 	$output = [];
    
    foreach( $input as $key => $value ) {

        if (isset( $input[$key])) {
            $output[$key] = strip_tags( stripslashes( $input[ $key ] ) );
        }
    }

    return apply_filters( 'ltdi_setting_validation', $output, $input );
}


function ltdi_settings_page_callback() {
    echo '<div class="wrap">';
    echo __('<h1>This is the page content</h1>', 'ltdi');
    
    echo '<form method="post" action="options.php">';
    settings_fields('ltdi_theme_settings');
    do_settings_sections('ltdi_theme_settings');
    submit_button();
    echo '</form>';
  
    echo '</div>';
}

Receive Tutorials Direct to Your Inbox