/home/suroeste/public_html/wp-content/themes/ewebot/core/registrator
Edit: /home/suroeste/public_html/wp-content/themes/ewebot/core/registrator/sidebars.php (1751B)
'Default Sidebar',
'description' => esc_html__('Add the widgets appearance for Custom Sidebar. Drag the widget from the available list on the left, configure widgets options and click Save button. Select the sidebar on the posts or pages in just few clicks.', 'ewebot'),
'id' => esc_attr(strtolower(preg_replace('/[^A-Za-z0-9\-]/', '', str_replace(' ', '-', 'Default Sidebar')))),
'before_widget' => '
',
'after_widget' => '
',
'before_title' => '
',
));
$sidebars = gt3_option('sidebars');
if (!empty($sidebars)) {
foreach($sidebars as $sidebar){
register_sidebar( array(
'name' => esc_attr($sidebar),
'description' => esc_html__('Add the widgets appearance for Custom Sidebar. Drag the widget from the available list on the left, configure widgets options and click Save button. Select the sidebar on the posts or pages in just few clicks.', 'ewebot'),
'id' => "sidebar_".esc_attr(strtolower(preg_replace('/[^A-Za-z0-9\-]/', '', str_replace(' ', '-', $sidebar)))),
'before_widget' => '
',
'after_widget' => '
',
'before_title' => '
',
));
}
}
}
add_action('widgets_init', 'gt3_sidebar_generator');
}