Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
subversal
/
video
/
wp-content
/
wp-includes
/
wp-content
/
themes
/
atlas
/
functions
:
widgets.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Sidebar * * @package Atlas */ /* -------------------------------------------------------------------------------- * Register Default Widgets * ------------------------------------------------------------------------------ */ if ( ! function_exists( 'th90_default_widget_areas' ) ) { /** * Register default widget area. */ function th90_default_widget_areas() { $box = ''; if ( th90_opt( 'box_active' ) ) { $box = ' box-wrap'; } /* Default */ register_sidebar( array( 'name' => 'Main Sidebar', 'id' => 'main-sidebar', 'description' => esc_html__( 'This is default widgets area.', 'atlas' ), 'before_widget' => '<div id="%1$s" class="widget %2$s clearfix">', 'after_widget' => '</div>', 'before_title' => '<div class="widget-heading"><h2 class="title head4">', 'after_title' => '</h2></div>', ) ); } } add_action( 'widgets_init', 'th90_default_widget_areas', 1000 ); add_filter('dynamic_sidebar_params', function($params){ $params[0]['before_widget'] = '<div id="%1$s" class="widget %2$s clearfix' . th90_box(false). '">'; return $params; });