Added 'nav--footer' class to footer nav

This commit is contained in:
Pedro Reis 2015-11-25 12:34:49 +00:00
parent de3b6a664e
commit 6f0f79caa4
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
<footer class="footer" role="contentinfo"> <footer class="footer" role="contentinfo">
<div class="container"> <div class="container">
<?php wp_nav_menu(['theme_location' => 'footer']); ?> <?php wp_nav_menu(['theme_location' => 'footer', 'menu_class' => 'nav nav--footer']); ?>
&copy; <?php bloginfo( 'name' ); ?> <?php echo date( 'Y' ); ?> &copy; <?php bloginfo( 'name' ); ?> <?php echo date( 'Y' ); ?>
</div> </div>
</footer> </footer>
<?php wp_footer(); ?> <?php wp_footer(); ?>
</body> </body>
</html> </html>