| Server IP : 198.38.94.67 / Your IP : 216.73.217.74 Web Server : LiteSpeed System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64 User : azfilmst ( 1070) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/azfilmst/azfilmz.com/wp-content/plugins/redux-framework/sample/sections/basic-fields/ |
Upload File : |
<?php /** * Redux Framework text config. * For full documentation, please visit: https://devs.redux.io/ * * @package Redux Framework */ // phpcs:disable defined( 'ABSPATH' ) || exit; Redux::set_section( $opt_name, array( 'title' => esc_html__( 'Text', 'your-textdomain-here' ), 'desc' => esc_html__( 'For full documentation on this field, visit: ', 'your-textdomain-here' ) . '<a href="https://devs.redux.io/core-fields/text.html" target="_blank">https://devs.redux.io/core-fields/text.html</a>', 'id' => 'basic-text', 'subsection' => true, 'customizer_width' => '700px', 'fields' => array( array( 'id' => 'text-example', 'type' => 'text', 'title' => esc_html__( 'Text Field', 'your-textdomain-here' ), 'subtitle' => esc_html__( 'Subtitle', 'your-textdomain-here' ), 'desc' => esc_html__( 'Field Description', 'your-textdomain-here' ), 'default' => 'Default Text', ), array( 'id' => 'text-example-hint', 'type' => 'text', 'title' => esc_html__( 'Text Field w/ Hint', 'your-textdomain-here' ), 'subtitle' => esc_html__( 'Subtitle', 'your-textdomain-here' ), 'desc' => esc_html__( 'Field Description', 'your-textdomain-here' ), 'default' => 'Default Text', 'hint' => array( 'title' => 'Hint Title', 'content' => 'Hint content about this field!', ), ), array( 'id' => 'text-placeholder', 'type' => 'text', 'title' => esc_html__( 'Text Field w/ placeholder using custom data object.', 'your-textdomain-here' ), 'subtitle' => esc_html__( 'Subtitle', 'your-textdomain-here' ), 'desc' => esc_html__( 'Field Description', 'your-textdomain-here' ), 'placeholder' => array( 'box1' => 'Box One Placeholder', 'box2' => 'Box Two Placeholder', ), 'data' => array( 'box1' => 'Box One Title', 'box2' => 'Box Two Title', ), ), ), ) ); // phpcs:enable