35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Redux Framework background config.
|
||
|
* For full documentation, please visit: http://devs.redux.io/
|
||
|
*
|
||
|
* @package Redux Framework
|
||
|
*/
|
||
|
|
||
|
defined( 'ABSPATH' ) || exit;
|
||
|
|
||
|
Redux::set_section(
|
||
|
$opt_name,
|
||
|
array(
|
||
|
'title' => esc_html__( 'Background', 'your-textdomain-here' ),
|
||
|
'id' => 'design-background',
|
||
|
'desc' => esc_html__( 'For full documentation on this field, visit: ', 'your-textdomain-here' ) . '<a href="https://devs.redux.io/core-fields/background.html" target="_blank">https://devs.redux.io/core-fields/background.html</a>',
|
||
|
'subsection' => true,
|
||
|
'fields' => array(
|
||
|
array(
|
||
|
'id' => 'opt-background',
|
||
|
'type' => 'background',
|
||
|
'output' => array(
|
||
|
'background-color' => 'body',
|
||
|
'important' => true,
|
||
|
),
|
||
|
'default' => array(
|
||
|
'background-color' => '#d1b7e2',
|
||
|
),
|
||
|
'title' => __( 'Body Background', 'your-textdomain-here' ),
|
||
|
'subtitle' => __( 'Body background with image, color, etc.', 'your-textdomain-here' ),
|
||
|
),
|
||
|
),
|
||
|
)
|
||
|
);
|