Reply To: Show widgets below nav bar

#20579
hankyknot
Participant

I replaced the old Footer content shown below under OLD with that shown under NEW and lost my nav bar completely and the background also glitched slightly. What did I do wrong?

NEW
<?php
/**
 * The footer Template
 *
 * @package WordPress
 * @subpackage minimatica
 * @since Minimatica 1.0
 */
 ?>
                <footer id="footer">
                         <nav id="access" role="navigation">
                                <?php wp_nav_menu( array( 'theme_location'  => 'primary_nav', 'container_id' => 'primary-nav', 'container_class' => 'nav', 'fallback_cb' => 'minimatica_nav_menu' ) ); ?>
                        </nav><!-- #access -->
                <?php get_sidebar( 'footer' ); ?>
                </footer><!-- #footer -->
        </div><!-- #wrapper -->
        <?php wp_footer(); ?>
</body>
</html>

OLD
<?php
/**
 * The footer Template
 *
 * @package WordPress
 * @subpackage minimatica
 * @since Minimatica 1.0
 */
 ?>
 		<footer id="footer">
			<?php get_sidebar( 'footer' ); ?>
 			<nav id="access" role="navigation">
 				<?php wp_nav_menu( array( 'theme_location'  => 'primary_nav', 'container_id' => 'primary-nav', 'container_class' => 'nav', 'fallback_cb' => 'minimatica_nav_menu' ) ); ?>
			</nav><!-- #access -->
		</footer><!-- #footer -->
	</div><!-- #wrapper -->
	<?php wp_footer(); ?>
</body>
</html>