balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

password.php (751B)


      1 <?php
      2 /**
      3  * Redux Framework password config.
      4  * For full documentation, please visit: http://devs.redux.io/
      5  *
      6  * @package Redux Framework
      7  */
      8 
      9 defined( 'ABSPATH' ) || exit;
     10 
     11 Redux::set_section(
     12 	$opt_name,
     13 	array(
     14 		'title'      => esc_html__( 'Password', 'your-textdomain-here' ),
     15 		'id'         => 'basic-password',
     16 		'desc'       => esc_html__( 'For full documentation on this field, visit: ', 'your-textdomain-here' ) . '<a href="https://devs.redux.io/core-fields/password.html" target="_blank">https://devs.redux.io/core-fields/password.html</a>',
     17 		'subsection' => true,
     18 		'fields'     => array(
     19 			array(
     20 				'id'       => 'password',
     21 				'type'     => 'password',
     22 				'username' => true,
     23 				'title'    => 'Password Field',
     24 			),
     25 		),
     26 	)
     27 );