HEX
Server: Apache
System: Linux outside 5.4.8_Algonet_ZeroMAC_0.9.4.8 #6 SMP Mon Feb 3 20:36:07 CET 2020 x86_64
User: server (1002)
PHP: 8.3.20
Disabled: exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,parse_ini_file,show_source
Upload Files
File: /home/muoapartman/www/wp-content/themes/hotel-vivanta/inc/hotel-vivanta-customizer-default.php
<?php
if (!function_exists('hotel_vivanta_theme_options')) :
    function hotel_vivanta_theme_options()
    {
        $defaults = array(

            //banner section
            'facebook' => '',
            'twitter' => '',
            'instagram' => '',
            'header_phone' => '',
            'banner_title' => '',
            'banner_button_txt' => '',
            'banner_button_url' => '',
            'banner_bg_image' => '',
            'about_show' => 1,
            'choose_about_page' => '',
            'about_title' => '',
            'about_additional_image' => '',
            'explore_show' => 1,
            'explore_title' => '',
            'explore_desc' => '',
            'explore_category' => '',
            'cta_show' => 1,
            'cta_title' => '',
            'cta_button_txt' => '',
            'cta_button_url' => '',
            'cta_bg_image' => '',
            'room_show' => 1,
            'room_title' => '',
            'room_desc' => '',
            'room_category' => '',
            'blog_show' => 1,
            'blog_title' => '',
            'blog_desc' => '',
            'blog_category' => '',
            'show_prefooter' => 1,


        );

        $options = get_option('hotel_vivanta_theme_options', $defaults);

        //Parse defaults again - see comments
        $options = wp_parse_args($options, $defaults);

        return $options;
    }
endif;