'eee', 'default-image' => get_template_directory_uri() . '/images/bonyo-bg.png', ); add_theme_support('custom-background', $bg_default); //Nav Menu custom class --------------- class bonyo_nav_walker extends Walker_Nav_Menu { function start_lvl(&$output, $depth = 0, $args = array()) { $output .= ''; } } //Sidebar Widget ------------- if (!function_exists('bonyo_widgets_init')): function bonyo_widgets_init() { register_sidebar(array( 'name' => esc_html__('Regular Sidebar', 'bonyo'), 'id' => 'sidebar-1', 'description' => esc_html__('Sidebar for regular pages.', 'bonyo'), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); } endif; add_action('widgets_init', 'bonyo_widgets_init'); //Search widget form --------------- function bonyo_search_form($form) { $form = ''; return $form; } add_filter('get_search_form', 'bonyo_search_form'); //Extra ------------- //Customizer locate_template('inc/bonyo-customizer.php', true);