MOON
Server: Apache
System: Linux server1.primemusicproductions.com 4.18.0-477.27.2.el8_8.x86_64 #1 SMP Fri Sep 29 08:21:01 EDT 2023 x86_64
User: primrwxj (1001)
PHP: 8.3.3
Disabled: NONE
Upload Files
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 -->