Organize sidebar files into loop-templates directory

This commit is contained in:
Alex Wright 2018-06-11 22:32:20 -05:00
parent 2b94b6222a
commit 942c3fe8f5
14 changed files with 12 additions and 29 deletions

View File

@ -11,7 +11,7 @@ $the_theme = wp_get_theme();
$container = get_theme_mod( 'understrap_container_type' );
?>
<?php get_sidebar( 'footerfull' ); ?>
<?php get_template_part( 'loop-templates/sidebar', 'footerfull' ); ?>
<div class="wrapper" id="wrapper-footer">

View File

@ -11,11 +11,11 @@
<div class="wrapper" id="wrapper-hero">
<?php get_sidebar( 'hero' ); ?>
<?php get_template_part( 'loop-templates/sidebar', 'hero' ); ?>
<?php get_sidebar( 'herocanvas' ); ?>
<?php get_template_part( 'loop-templates/sidebar', 'herocanvas' ); ?>
<?php get_sidebar( 'statichero' ); ?>
<?php get_template_part( 'loop-templates/sidebar', 'statichero' ); ?>
</div>

View File

@ -12,7 +12,7 @@ $sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
?>
<?php if ( 'left' === $sidebar_pos || 'both' === $sidebar_pos ) : ?>
<?php get_sidebar( 'left' ); ?>
<?php get_template_part( 'loop-templates/sidebar', 'left' ); ?>
<?php endif; ?>
<?php

View File

@ -12,6 +12,6 @@
<?php if ( 'right' === $sidebar_pos || 'both' === $sidebar_pos ) : ?>
<?php get_sidebar( 'right' ); ?>
<?php get_template_part( 'loop-templates/sidebar', 'right' ); ?>
<?php endif; ?>

View File

@ -20,4 +20,4 @@ $sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
<?php endif; ?>
<?php dynamic_sidebar( 'left-sidebar' ); ?>
</div><!-- #secondary -->
</div><!-- #left-sidebar -->

View File

@ -20,4 +20,4 @@ $sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
<?php endif; ?>
<?php dynamic_sidebar( 'right-sidebar' ); ?>
</div><!-- #secondary -->
</div><!-- #right-sidebar -->

View File

@ -17,7 +17,7 @@ $container = get_theme_mod( 'understrap_container_type' );
<div class="row">
<?php get_sidebar( 'left' ); ?>
<?php get_template_part( 'loop-templates/sidebar', 'left' ); ?>
<div
class="<?php
@ -46,7 +46,7 @@ $container = get_theme_mod( 'understrap_container_type' );
</div><!-- #primary -->
<?php get_sidebar( 'right' ); ?>
<?php get_template_part( 'loop-templates/sidebar', 'right' ); ?>
</div><!-- .row -->

View File

@ -17,7 +17,7 @@ $container = get_theme_mod( 'understrap_container_type' );
<div class="row">
<?php get_sidebar( 'left' ); ?>
<?php get_template_part( 'loop-templates/sidebar', 'left' ); ?>
<div
class="<?php if ( is_active_sidebar( 'left-sidebar' ) ) : ?>col-md-8<?php else : ?>col-md-12<?php endif; ?> content-area"

View File

@ -40,7 +40,7 @@ $container = get_theme_mod( 'understrap_container_type' );
</div><!-- #primary -->
<?php get_sidebar( 'right' ); ?>
<?php get_template_part( 'loop-templates/sidebar', 'right' ); ?>
</div><!-- .row -->

View File

@ -1,17 +0,0 @@
<?php
/**
* The sidebar containing the main widget area.
*
* @package understrap
*/
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
return;
}
?>
<div class="col-md-4 widget-area" id="secondary" role="complementary">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</div><!-- #secondary -->