| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/themes/glaza/theme_options/ |
Upload File : |
<?php
if ( ! function_exists( 'glaza_theme_options_footer' ) ) {
function glaza_theme_options_footer() {
return array(
'id' => 'glaza_config_section_footer',
'title' => esc_html__( 'Footer Options', 'glaza' ),
'desc' => esc_html__( 'Select options for the footer.', 'glaza' ),
'icon' => 'el el-th',
'fields' => array(
array(
'id' => 'section_start_footer_style',
'type' => 'section',
'class' => 'ruby-section-start',
'title' => esc_html__( 'Footer Style Options', 'glaza' ),
'indent' => true,
),
array(
'id' => 'footer_background',
'type' => 'background',
'transparent' => false,
'title' => esc_html__( 'Footer Background', 'glaza' ),
'subtitle' => esc_html__( 'select a background for the footer: image, color, etc', 'glaza' ),
'default' => array(
'background-color' => '#000',
'background-size' => 'cover',
'background-attachment' => 'fixed',
'background-position' => 'center center',
'background-repeat' => 'no-repeat'
),
'output' => array( '.footer-wrap', '.footer-wrap.is-light-text' )
),
array(
'id' => 'footer_text_style',
'type' => 'image_select',
'title' => esc_html__( 'Footer Text Style', 'glaza' ),
'subtitle' => esc_html__( 'Select a color style for footer text.', 'glaza' ),
'options' => glaza_config_text_style(),
'default' => 'light'
),
array(
'id' => 'footer_logo',
'type' => 'media',
'title' => esc_html__( 'Footer Logo Upload', 'glaza' ),
'subtitle' => esc_html__( 'upload your footer logo (300x90)px, allowed extensions are .jpg, .png and .gif.', 'glaza' )
),
array(
'id' => 'site_back_to_top',
'type' => 'switch',
'title' => esc_html__( 'Back to Top Button', 'glaza' ),
'subtitle' => esc_html__( 'enable or disable back to top button.', 'glaza' ),
'switch' => true,
'default' => 1
),
array(
'id' => 'section_end_meta_footer_style',
'type' => 'section',
'class' => 'ruby-section-end',
'indent' => false,
),
array(
'id' => 'section_start_footer_copyright',
'type' => 'section',
'class' => 'ruby-section-start',
'title' => esc_html__( 'Copyright Options', 'glaza' ),
'indent' => true
),
array(
'id' => 'footer_copyright',
'type' => 'text',
'title' => esc_html__( 'Copyright Text', 'glaza' ),
'subtitle' => esc_html__( 'input your copyright text or HTML.', 'glaza' ),
'default' => '',
),
array(
'id' => 'copyright_social',
'type' => 'switch',
'title' => esc_html__( 'Copyright - Social Bar', 'glaza' ),
'subtitle' => esc_html__( 'enable or disable the the copyright bar.', 'glaza' ),
'switch' => true,
'default' => 1
),
array(
'id' => 'section_end_footer_copyright',
'type' => 'section',
'class' => 'ruby-section-end no-border',
'indent' => false
)
)
);
}
}