42 lines
1.3 KiB
PHP
42 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Template part for displaying the footer content
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
|
*
|
|
* @package Valier
|
|
*/
|
|
|
|
?>
|
|
|
|
<footer style="background: url(<?= get_field('footer_image', 'option') ?>)">
|
|
<?php if (is_active_sidebar('footer-sidebar')) : ?>
|
|
<aside role="complementary" aria-label="<?php esc_attr_e('Footer', 'valier'); ?>" class="container mx-auto ">
|
|
<?php dynamic_sidebar('footer-sidebar'); ?>
|
|
</aside>
|
|
<?php endif; ?>
|
|
<div class="container mx-auto">
|
|
<a href="<?= get_field('linkedin_link', 'option') ?>" target="_blank"
|
|
class="flex justify-center gap-3 items-end mb-2">
|
|
<img src="<?= get_field('abrevitura_de_linkedin', 'option') ?>" alt="Linkedin">
|
|
<img src="<?= get_field('logo_linkedin', 'option') ?>" alt="Linkedin">
|
|
|
|
</a>
|
|
</div>
|
|
<div class="bg-primary text-black py-2 has-playfair-font-family">
|
|
<div class="container legal mx-auto has-mini-font-size flex justify-center gap-3 italic">
|
|
<?= get_field('texto_legal', 'option') ?>
|
|
<?php
|
|
wp_nav_menu(
|
|
array(
|
|
'theme_location' => 'menu-legal',
|
|
'container' => false,
|
|
'menu_id' => 'menu-legal',
|
|
'items_wrap' => '<ul id="%1$s" class="%2$s flex justify-center gap-3" aria-label="submenu">%3$s</ul>',
|
|
)
|
|
);
|
|
?>
|
|
</div>
|
|
</div>
|
|
</footer>
|