esc_html__( 'Blog Right Sidebar', 'aberration-lite' ),
'id' => 'blogright',
'description' => esc_html__( 'Right sidebar for the blog', 'aberration-lite' ),
'before_widget' => '
',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Blog Left Sidebar', 'aberration-lite' ),
'id' => 'blogleft',
'description' => esc_html__( 'Left sidebar for the blog', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Page Right Sidebar', 'aberration-lite' ),
'id' => 'pageright',
'description' => esc_html__( 'Right sidebar for pages', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Page Left Sidebar', 'aberration-lite' ),
'id' => 'pageleft',
'description' => esc_html__( 'Left sidebar for pages', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Banner', 'aberration-lite' ),
'id' => 'banner',
'description' => esc_html__( 'For Images and Sliders.', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Content Top 1', 'aberration-lite' ),
'id' => 'ctop1',
'description' => esc_html__( 'Content Top 1 position', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Content Top 2', 'aberration-lite' ),
'id' => 'ctop2',
'description' => esc_html__( 'Content Top 2 position', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Content Top 3', 'aberration-lite' ),
'id' => 'ctop3',
'description' => esc_html__( 'Content Top 3 position', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Content Top 4', 'aberration-lite' ),
'id' => 'ctop4',
'description' => esc_html__( 'Content Top 4 position', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Content Bottom 1', 'aberration-lite' ),
'id' => 'cbottom1',
'description' => esc_html__( 'Content Bottom 1 position', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Content Bottom 2', 'aberration-lite' ),
'id' => 'cbottom2',
'description' => esc_html__( 'Content Bottom 2 position', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Content Bottom 3', 'aberration-lite' ),
'id' => 'cbottom3',
'description' => esc_html__( 'Content Bottom 3 position', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Content Bottom 4', 'aberration-lite' ),
'id' => 'cbottom4',
'description' => esc_html__( 'Content Bottom 4 position', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Bottom 1', 'aberration-lite' ),
'id' => 'bottom1',
'description' => esc_html__( 'Bottom 1 position', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Bottom 2', 'aberration-lite' ),
'id' => 'bottom2',
'description' => esc_html__( 'Bottom 2 position', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Bottom 3', 'aberration-lite' ),
'id' => 'bottom3',
'description' => esc_html__( 'Bottom 3 position', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Bottom 4', 'aberration-lite' ),
'id' => 'bottom4',
'description' => esc_html__( 'Bottom 4 position', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer', 'aberration-lite' ),
'id' => 'footer',
'description' => esc_html__( 'This is a sidebar position that sits above the footer menu and copyright', 'aberration-lite' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'aberration_lite_widgets_init' );
/**
* Count the number of widgets to enable resizable widgets
* in the content top group.
*/
function aberration_lite_ctop() {
$count = 0;
if ( is_active_sidebar( 'ctop1' ) )
$count++;
if ( is_active_sidebar( 'ctop2' ) )
$count++;
if ( is_active_sidebar( 'ctop3' ) )
$count++;
if ( is_active_sidebar( 'ctop4' ) )
$count++;
$class = '';
switch ( $count ) {
case '1':
$class = 'col-lg-12';
break;
case '2':
$class = 'col-sm-6 col-md-6';
break;
case '3':
$class = 'col-sm-6 col-md-4';
break;
case '4':
$class = 'col-sm-6 col-md-3';
break;
}
if ( $class )
echo 'class="' . $class . '"';
}
/**
* Count the number of widgets to enable resizable widgets
* in the content bottom group.
*/
function aberration_lite_cbottom() {
$count = 0;
if ( is_active_sidebar( 'cbottom1' ) )
$count++;
if ( is_active_sidebar( 'cbottom2' ) )
$count++;
if ( is_active_sidebar( 'cbottom3' ) )
$count++;
if ( is_active_sidebar( 'cbottom4' ) )
$count++;
$class = '';
switch ( $count ) {
case '1':
$class = 'col-lg-12';
break;
case '2':
$class = 'col-sm-6 col-md-6';
break;
case '3':
$class = 'col-sm-6 col-md-4';
break;
case '4':
$class = 'col-sm-6 col-md-3';
break;
}
if ( $class )
echo 'class="' . $class . '"';
}
/**
* Count the number of widgets to enable resizable widgets
* in the bottom group.
*/
function aberration_lite_bottom() {
$count = 0;
if ( is_active_sidebar( 'bottom1' ) )
$count++;
if ( is_active_sidebar( 'bottom2' ) )
$count++;
if ( is_active_sidebar( 'bottom3' ) )
$count++;
if ( is_active_sidebar( 'bottom4' ) )
$count++;
$class = '';
switch ( $count ) {
case '1':
$class = 'col-lg-12';
break;
case '2':
$class = 'col-sm-6 col-lg-6';
break;
case '3':
$class = 'col-sm-6 col-lg-4';
break;
case '4':
$class = 'col-sm-6 col-lg-3';
break;
}
if ( $class )
echo 'class="' . $class . '"';
}