Advertisement
Guest User

Untitled

a guest
Apr 24th, 2013
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template for displaying the footer.
  4. *
  5. * Contains the closing of the id=main div and all content
  6. * after. Calls sidebar-footer.php for bottom widgets.
  7. *
  8. * @package Pilcrow
  9. * @since Pilcrow 1.0
  10. */
  11. ?>
  12. </div><!-- #content-box -->
  13.  
  14. <div id="footer" role="contentinfo">
  15. <div id="colophon">
  16.  
  17. <?php
  18. /* A sidebar in the footer? Yep. You can can customize
  19. * your footer with two columns of widgets.
  20. */
  21. get_sidebar( 'footer' );
  22. ?>
  23.  
  24. <div id="site-info">
  25. <!--<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a> &middot; <?php bloginfo( 'description' ); ?> -->
  26. xyz xyz
  27. </div><!-- #site-info -->
  28.  
  29. <div id="site-generator">
  30. <a href="http://wordpress.org/" rel="generator">xyz xyz</a> &middot; <!--<?php printf( __( 'Theme: %1$s by %2$s.', 'pilcrow' ), 'Pilcrow', '<a href="http://automattic.com/" rel="designer">Automattic</a>' ); ?>-->
  31. </div><!-- #site-generator -->
  32.  
  33. </div><!-- #colophon -->
  34. </div><!-- #footer -->
  35.  
  36. </div><!-- #page .blog -->
  37. </div><!-- #container -->
  38.  
  39. <?php do_action( 'pilcrow_after' ); ?>
  40.  
  41. <?php
  42. /* Always have wp_footer() just before the closing </body>
  43. * tag of your theme, or you will break many plugins, which
  44. * generally use this hook to reference JavaScript files.
  45. */
  46.  
  47. wp_footer();
  48. ?>
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement