Advertisement
Guest User

footer.php

a guest
Sep 23rd, 2019
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 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 Adonis
  10. */
  11.  
  12. ?>
  13. </div><!-- .wrapper -->
  14. </div><!-- #content -->
  15.  
  16. <?php if ( 'page' == get_option('show_on_front') && is_front_page() && get_theme_mod( 'adonis_enable_static_page_posts' ) ) : ?>
  17. <?php get_template_part( 'template-parts/recent-posts/front-recent', 'posts' ); ?>
  18. <?php endif; ?>
  19.  
  20. <?php get_template_part( 'template-parts/portfolio/display', 'portfolio' ); ?>
  21.  
  22. <?php ! get_theme_mod( 'adonis_contact_position' ) ? get_template_part( 'template-parts/contact-info/display', 'contact-info' ) : ''; ?>
  23. <?php ! get_theme_mod( 'adonis_testimonial_position', 1 ) ? get_template_part( 'template-parts/testimonial/display', 'testimonial' ) : ''; ?>
  24.  
  25. <?php get_template_part( 'template-parts/footer/widget', 'instagram' ); ?>
  26.  
  27. <footer id="colophon" class="site-footer">
  28. <?php get_template_part( 'template-parts/footer/footer', 'widgets' ); ?>
  29.  
  30. <div id="site-generator">
  31. <div class="wrapper">
  32. <div class="site-social">
  33. <?php get_template_part('template-parts/navigation/navigation', 'social'); ?>
  34. </div><!-- .site-social -->
  35.  
  36. <?php get_template_part('template-parts/footer/site', 'info'); ?>
  37. </div><!-- .wrapper -->
  38. </div><!-- #site-generator -->
  39. </footer><!-- #colophon -->
  40. </div><!-- .below-site-header -->
  41. </div><!-- #page -->
  42.  
  43. <?php wp_footer(); ?>
  44.  
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement