Enhance Theme Templates and Editor Layout
This commit is contained in:
+14
-3
@@ -1,10 +1,21 @@
|
||||
<footer class="site-footer">
|
||||
<div class="footer-inner">
|
||||
<span>© <?php echo esc_html( wp_date( 'Y' ) ); ?> <?php bloginfo( 'name' ); ?></span>
|
||||
<?php wp_nav_menu( array( 'theme_location' => 'footer', 'menu_class' => 'footer-menu', 'container' => false, 'fallback_cb' => false ) ); ?>
|
||||
<?php
|
||||
wp_nav_menu(
|
||||
array(
|
||||
'theme_location' => 'footer',
|
||||
'menu_class' => 'footer-menu',
|
||||
'container' => false,
|
||||
'fallback_cb' => false,
|
||||
)
|
||||
);
|
||||
?>
|
||||
</div>
|
||||
</footer>
|
||||
<?php // Required hook for enqueued footer scripts and plugin output.
|
||||
wp_footer(); ?>
|
||||
<?php
|
||||
// Required hook for enqueued footer scripts and plugin output.
|
||||
wp_footer();
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user