File: /home/primrwxj/articlebinder.com/wp-content/themes/the-bootstrap-blog/sidebar.php
<?php
/**
* The template for displaying sidebars
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#displaying-sidebars-in-your-theme
*
* @since The Bootstrap Blog 0.1
*/
?><div class="col-sm-3 offset-sm-1 blog-sidebar mb-3">
<?php
wp_nav_menu( array(
'theme_location' => 'social-before-widgets',
'container' => '',
'container_class' => '',
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
'menu_id' => '',
'menu_class' => 'nav mb-3',
'depth' => 1,
'link_before' => '<span class="screen-reader-text">',
'link_after' => '</span>',
'fallback_cb' => false,
)
);
?>
<?php if ( is_active_sidebar('sidebar') ) : dynamic_sidebar('sidebar'); endif;?>
<?php
wp_nav_menu( array(
'theme_location' => 'social-after-widgets',
'container' => '',
'container_class' => '',
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
'menu_id' => '',
'menu_class' => 'nav mb-3',
'depth' => 1,
'link_before' => '<span class="screen-reader-text">',
'link_after' => '</span>',
'fallback_cb' => false,
)
);
?>
</div><!-- /.blog-sidebar -->