HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpmuhibbah_err/wp-content/themes/goodwish/includes/sidebar/sidebar.php
<?php

if(!function_exists('goodwish_edge_register_sidebars')) {
    /**
     * Function that registers theme's sidebars
     */
    function goodwish_edge_register_sidebars() {

        register_sidebar(array(
            'name' => esc_html__('Sidebar','goodwish'),
            'id' => 'sidebar',
            'description' => esc_html__('Default Sidebar','goodwish'),
            'before_widget' => '<div id="%1$s" class="widget %2$s">',
            'after_widget' => '</div>',
            'before_title' => '<h4 class="edgtf-widget-title">',
            'after_title' => '</h4>' . goodwish_edge_get_separator_html(array('position' => 'left', 'class_name' => 'edgtf-sidebar-title-separator'))
        ));

    }

    add_action('widgets_init', 'goodwish_edge_register_sidebars');
}

if(!function_exists('goodwish_edge_add_support_custom_sidebar')) {
    /**
     * Function that adds theme support for custom sidebars. It also creates GoodwishEdgeSidebar object
     */
    function goodwish_edge_add_support_custom_sidebar() {
        add_theme_support('GoodwishEdgeSidebar');
        if (get_theme_support('GoodwishEdgeSidebar')) new GoodwishEdgeSidebar();
    }

    add_action('after_setup_theme', 'goodwish_edge_add_support_custom_sidebar');
}