STYLE Clean up footer.php by standardizing action hook formatting and removing unnecessary classes

This commit is contained in:
Antoine 2025-05-12 16:55:14 +02:00
parent 596f442b66
commit ffeecdc688

View File

@ -1,16 +1,16 @@
</main>
<?php do_action( 'tailpress_content_end' ); ?>
<?php do_action('tailpress_content_end'); ?>
<?php do_action( 'tailpress_content_after' ); ?>
<?php do_action('tailpress_content_after'); ?>
<footer id="colophon" class="site-footer" role="contentinfo">
<?php get_template_part('template-parts/footer'); ?>
<?php do_action('tailpress_footer'); ?>
<footer id="colophon" class="site-footer bg-gray-50 py-12" role="contentinfo">
<?php do_action( 'tailpress_footer' ); ?>
<div class="container mx-auto text-center text-gray-500">
&copy; <?php echo date_i18n( 'Y' );?> - <?php echo get_bloginfo( 'name' );?>
</div>
</footer>
</div>