feat: add wordpress site variant

This commit is contained in:
bisco
2026-06-25 07:36:25 +02:00
parent cae9180bc6
commit c66dd7e511
46 changed files with 2091 additions and 136 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
/** Site footer. */
$footer_text = azionelab_mod( 'footer_text' );
$privacy_url = get_privacy_policy_url();
?>
<footer class="site-footer">
<div class="container footer-inner">
<p><strong><?php bloginfo( 'name' ); ?></strong> · <?php echo esc_html( $footer_text ); ?></p>
<p>
<?php if ( $privacy_url ) : ?>
<a href="<?php echo esc_url( $privacy_url ); ?>">Privacy</a>
<?php else : ?>
Privacy — TODO
<?php endif; ?>
· Tema Azione!Lab
</p>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>