register left-right templates, WP coding standards

This commit is contained in:
Stef Kariotidis 2016-11-05 14:34:48 +02:00
parent 85a6d42c00
commit 108222b383
3 changed files with 94 additions and 40 deletions

View File

@ -5,12 +5,22 @@
*
* @package understrap
*/
if ( ! function_exists ( 'understrap_widgets_init' ) ) {
if ( ! function_exists( 'understrap_widgets_init' ) ) {
function understrap_widgets_init() {
register_sidebar( array(
'name' => __( 'Sidebar', 'understrap' ),
'id' => 'sidebar-1',
'description' => 'Sidebar widget area',
'name' => __( 'Right Sidebar', 'understrap' ),
'id' => 'right-sidebar',
'description' => 'Right sidebar widget area',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
register_sidebar( array(
'name' => __( 'Left Sidebar', 'understrap' ),
'id' => 'left-sidebar',
'description' => 'Left sidebar widget area',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget-title">',

22
sidebar-left.php Normal file
View File

@ -0,0 +1,22 @@
<?php
/**
* The sidebar containing the main widget area.
*
* @package understrap
*/
if ( ! is_active_sidebar( 'right-sidebar' ) || ! is_active_sidebar( 'right-sidebar' ) ) {
return;
}
// when both sidebars turned one, reduce col size to 3 from 4.
$sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
?>
<?php if ( 'both' === $sidebar_pos ): ?>
<div class="col-md-3 widget-area" id="secondary" role="complementary">
<?php else: ?>
<div class="col-md-4 widget-area" id="secondary" role="complementary">
<?php endif; ?>
<?php dynamic_sidebar( ); ?>
</div><!-- #secondary -->

22
sidebar-right.php Normal file
View File

@ -0,0 +1,22 @@
<?php
/**
* The sidebar containing the main widget area.
*
* @package understrap
*/
if ( ! is_active_sidebar( 'right-sidebar' ) ) {
return;
}
// when both sidebars turned one, reduce col size to 3 from 4.
$sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
?>
<?php if ( 'both' === $sidebar_pos ): ?>
<div class="col-md-3 widget-area" id="secondary" role="complementary">
<?php else: ?>
<div class="col-md-4 widget-area" id="secondary" role="complementary">
<?php endif; ?>
<?php dynamic_sidebar( 'right-sidebar' ); ?>
</div><!-- #secondary -->