Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
drleilu
/
www
/
wp-content
/
plugins
/
redux-framework
/
sample
/
sections
/
color-selection
/
✏️
Editing: color-rgba.php
<?php /** * Redux Framework color RGBA 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 RGBA', '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-rgba.html" target="_blank">https://devs.redux.io/core-fields/color-rgba.html</a>', 'id' => 'color-rgba', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-color-rgba', 'type' => 'color_rgba', 'title' => esc_html__( 'Color RGBA', 'your-textdomain-here' ), 'subtitle' => esc_html__( 'Gives you the RGBA color.', 'your-textdomain-here' ), 'default' => array( 'color' => '#7e33dd', 'alpha' => .8, ), 'output' => array( 'color' => '.posted-on, .wp-block-post-date a', 'important' => true, ), ), ), ) ); // phpcs:enable
💾 Save
❌ Cancel