Added WP-Theme

This commit is contained in:
2026-04-23 08:21:57 +02:00
parent fb1685bdd7
commit ffd95cb825
37 changed files with 2415 additions and 145 deletions

View File

@@ -0,0 +1,32 @@
<?php
/**
* Theme footer.
*
* @package AS_Coaching
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<footer class="site-footer">
<div class="container footer-inner">
<p>&copy; <?php echo esc_html( gmdate( 'Y' ) ); ?> <?php bloginfo( 'name' ); ?></p>
<nav class="footer-nav" aria-label="<?php esc_attr_e( 'Footer Menu', 'as-coaching' ); ?>">
<?php
wp_nav_menu(
array(
'theme_location' => 'footer',
'container' => false,
'menu_class' => 'menu',
'fallback_cb' => '__return_false',
)
);
?>
</nav>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>