background.php (1038B)
1 <?php 2 /** 3 * Redux Framework background 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__( 'Background', 'your-textdomain-here' ), 15 'id' => 'design-background', 16 '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>', 17 'subsection' => true, 18 'fields' => array( 19 array( 20 'id' => 'opt-background', 21 'type' => 'background', 22 'output' => array( 23 'background-color' => 'body', 24 'important' => true, 25 ), 26 'default' => array( 27 'background-color' => '#d1b7e2', 28 ), 29 'title' => __( 'Body Background', 'your-textdomain-here' ), 30 'subtitle' => __( 'Body background with image, color, etc.', 'your-textdomain-here' ), 31 ), 32 ), 33 ) 34 );