Advertisement
Guest User

Footer

a guest
Apr 25th, 2014
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template for displaying the footer
  4. *
  5. * Contains footer content and the closing of the #main and #page div elements.
  6. *
  7. * @package WordPress
  8. * @subpackage Twenty_Twelve
  9. * @since Twenty Twelve 1.0
  10. */
  11. ?>
  12. </div><!-- #main .wrapper -->
  13. <footer id="colophon" role="contentinfo">
  14. <div class="left-info">
  15. <?php do_action( 'twentytwelve_credits' ); ?>
  16. <?php printf( __( 'WHATEVER YOU WANT OR BLANK', 'twentytwelve' ), 'WordPress' ); ?>
  17. </div>
  18. <div class="left2-info">
  19. <?php do_action( 'twentytwelve_credits' ); ?>
  20. <?php printf( __( 'WHATEVER YOU WANT OR BLANK', 'twentytwelve' ), 'WordPress' ); ?>
  21. </div>
  22. <div class="middle-info">
  23. <?php do_action( 'twentytwelve_credits' ); ?>
  24. <?php printf( __( 'WHATEVER YOU WANT OR BLANK', 'twentytwelve' ), 'WordPress' ); ?>
  25. </div>
  26. <div class="right-info">
  27. <?php do_action( 'twentytwelve_credits' ); ?>
  28. <?php printf( __( 'WHATEVER YOU WANT OR BLANK', 'twentytwelve' ), 'WordPress' ); ?>
  29. </div>
  30. <!-- .site-info -->
  31. </footer><!-- #colophon -->
  32. </div><!-- #page -->
  33.  
  34. <?php wp_footer(); ?>
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement