Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
drleilu
/
www
/
wp-content
/
plugins
/
redux-framework
/
sample
/
sections
/
color-selection
/
✏️
Editing: color-gradient.php
<?php /** * Redux Framework color gradient 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__( 'Color Gradient', 'your-textdomain-here' ), 'desc' => esc_html__( 'For full documentation on this field, visit: ', 'your-textdomain-here' ) . '<a href="https://devs.redux.io/core-fields/color-gradient.html" target="_blank">https://devs.redux.io/core-fields/color-gradient.html</a>', 'id' => 'color-gradient', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-color-header', 'type' => 'color_gradient', 'title' => esc_html__( 'Header Gradient Color Option', 'your-textdomain-here' ), 'subtitle' => esc_html__( 'Only color validation can be done on this field type', 'your-textdomain-here' ), 'desc' => esc_html__( 'This is the description field, again good for additional info.', 'your-textdomain-here' ), 'output' => '.site-header, header', 'gradient-type' => true, 'gradient-reach' => true, 'gradient-angle' => true, 'preview' => true, 'default' => array( 'from' => '#1e73be', 'to' => '#00897e', 'gradient-reach' => array( 'to' => 50, 'from' => 0, ), ), ), ), ) ); // phpcs:enable
💾 Save
❌ Cancel