-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.php
44 lines (41 loc) · 1.2 KB
/
sidebar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?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 -->