????
| Current Path : /home2/morganrand/www/wp-content/themes/wanderfuls/framework/customizer/settings/ |
| Current File : /home2/morganrand/www/wp-content/themes/wanderfuls/framework/customizer/settings/footer_bottom.php |
<?php
/**
* Customizer => Footer Bottom
*
* @package Wanderfuls WordPress Theme
* @subpackage Customizer
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// General
$this->sections['tb_footer_bottom'] = array(
'title' => __( 'General', 'tb' ),
'settings' => array(
array(
'id' => 'footer_bottom',
'default' => true,
'control' => array(
'label' => __( 'Bottom Footer Area', 'tb' ),
'type' => 'checkbox',
'desc' => __( 'If you disable this option we recommend you go to the Customizer Manager and disable the section as well so the next time you work with the Customizer it will load faster.', 'tb' ),
),
),
array(
'id' => 'footer_copyright_text',
'default' => 'Copyright <a href="#">Your Business LLC.</a> - All Rights Reserved',
'control' => array(
'label' => __( 'Copyright', 'tb' ),
'type' => 'textarea',
'active_callback' => 'tb_customizer_has_footer_bottom',
),
),
array(
'id' => 'bottom_footer_text_align',
'control' => array(
'type' => 'select',
'label' => __( 'Text Align', 'tb' ),
'choices' => array(
'default' => __( 'Default','tb' ),
'left' => __( 'Left','tb' ),
'right' => __( 'Right','tb' ),
'center' => __( 'Center','tb' ),
),
'active_callback'=> 'tb_customizer_has_footer_bottom',
),
'inline_css' => array(
'target' => '#footer-bottom',
'alter' => 'text-align',
),
),
array(
'id' => 'bottom_footer_padding',
'control' => array(
'type' => 'text',
'label' => __( 'Padding', 'tb' ),
'description' => __( 'Format: top right bottom left.', 'tb' ),
'active_callback'=> 'tb_customizer_has_footer_bottom',
),
'inline_css' => array(
'target' => '#footer-bottom',
'alter' => 'padding',
),
),
array(
'id' => 'bottom_footer_background',
'control' => array(
'type' => 'color',
'label' => __( 'Background', 'tb' ),
'active_callback'=> 'tb_customizer_has_footer_bottom',
),
'inline_css' => array(
'target' => '#footer-bottom',
'alter' => 'background',
),
),
array(
'id' => 'bottom_footer_color',
'control' => array(
'type' => 'color',
'label' => __( 'Color', 'tb' ),
'active_callback'=> 'tb_customizer_has_footer_bottom',
),
'inline_css' => array(
'target' => array(
'#footer-bottom',
'#footer-bottom p',
),
'alter' => 'color',
),
),
array(
'id' => 'bottom_footer_link_color',
'control' => array(
'type' => 'color',
'label' => __( 'Links', 'tb' ),
'active_callback'=> 'tb_customizer_has_footer_bottom',
),
'inline_css' => array(
'target' => '#footer-bottom a',
'alter' => 'color',
),
),
array(
'id' => 'bottom_footer_link_color_hover',
'control' => array(
'type' => 'color',
'label' => __( 'Links: Hover', 'tb' ),
'active_callback'=> 'tb_customizer_has_footer_bottom',
),
'inline_css' => array(
'target' => '#footer-bottom a:hover',
'alter' => 'color',
),
),
),
);