Advertisement
Guest User

Untitled

a guest
Mar 30th, 2015
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. <?php
  2. /**
  3. * Template for site footer
  4. * @package themify
  5. * @since 1.0.0
  6. */
  7. ?>
  8.  
  9. <?php themify_base_layout_after(); //hook ?>
  10. </div>
  11. <!-- /body -->
  12.  
  13. <div id="footerwrap">
  14.  
  15. <?php themify_base_footer_before(); // hook ?>
  16. <footer id="footer" class="pagewidth clearfix">
  17. <?php themify_base_footer_start(); // hook ?>
  18.  
  19. <?php get_template_part( 'includes/footer-widgets'); ?>
  20.  
  21. <p class="back-top"><a href="#header" class="icon-up" title="<?php _e( 'Back To Top', 'themify' ); ?>"></a></p>
  22.  
  23. <?php if (function_exists('wp_nav_menu')) {
  24. wp_nav_menu(array('theme_location' => 'footer-nav' , 'fallback_cb' => '' , 'container' => '' , 'menu_id' => 'footer-nav' , 'menu_class' => 'footer-nav'));
  25. } ?>
  26.  
  27. <div class="footer-text clearfix">
  28. <?php themify_base_the_footer_text(); ?>
  29. <?php themify_base_the_footer_text( 'two' ); ?>
  30. </div>
  31. <!-- /footer-text -->
  32. <?php themify_base_footer_end(); // hook ?>
  33. <img class="footerimage" src="your_image_URL">
  34. </footer>
  35. <!-- /#footer -->
  36. <?php themify_base_footer_after(); // hook ?>
  37. </div>
  38. <!-- /#footerwrap -->
  39.  
  40. </div>
  41. <!-- /#pagewrap -->
  42.  
  43. <?php
  44. /**
  45. * Stylesheets and Javascript files are enqueued in theme-functions.php
  46. */
  47. ?>
  48.  
  49. <?php themify_base_body_end(); // hook ?>
  50. <!-- wp_footer -->
  51. <?php wp_footer(); ?>
  52.  
  53. </body>
  54. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement