Advertisement
lapantino

rodapé arthur site

Feb 16th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template for displaying the footer.
  4. *
  5. * Contains the closing of the #content div and all content after.
  6. *
  7. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  8. *
  9. * @package Kumle
  10. */
  11.  
  12. /**
  13. * Hook - kumle_after_content.
  14. *
  15. * @hooked kumle_after_content_action - 10
  16. */
  17. do_action( 'kumle_after_content' );
  18.  
  19. ?>
  20.  
  21. <?php get_template_part( 'template-parts/footer-widgets' ); ?>
  22.  
  23. <footer id="colophon" class="site-footer" role="contentinfo">
  24. <div class="container">
  25. <div class="site-footer-wrap">
  26. <?php
  27.  
  28. $copyright_text = kumle_get_option( 'copyright_text' );
  29.  
  30. if ( ! empty( $copyright_text ) ) : ?>
  31.  
  32. <div class="copyright">
  33.  
  34. <?php echo wp_kses_data( $copyright_text );
  35. do_action( 'construction_kit_credit' );
  36. ?>
  37.  
  38. </div><!-- .copyright -->
  39.  
  40. <?php
  41.  
  42. endif;
  43. ?>
  44. </div>
  45. </div><!-- .container -->
  46. </footer><!-- #colophon -->
  47. </div><!-- #page -->
  48.  
  49. <?php wp_footer(); ?>
  50. </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement