mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
21 lines
692 B
PHP
21 lines
692 B
PHP
|
<?php
|
||
|
/**
|
||
|
* The template for displaying the footer.
|
||
|
*
|
||
|
* @package Bushwick
|
||
|
*/
|
||
|
?>
|
||
|
<footer id="colophon" class="site-footer" role="contentinfo">
|
||
|
<div class="site-info">
|
||
|
<?php do_action( 'bushwick_credits' ); ?>
|
||
|
<p>
|
||
|
<a href="http://wordpress.org/" title="<?php esc_attr_e( 'A Semantic Personal Publishing Platform', 'bushwick' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s.', 'bushwick' ), 'WordPress' ); ?></a>
|
||
|
<?php printf( __( 'Theme: %1$s by %2$s.', 'bushwick' ), 'Bushwick', '<a href="http://molovo.co.uk" rel="designer">James Dinsdale</a>' ); ?>
|
||
|
</p>
|
||
|
</div><!-- .site-info -->
|
||
|
</footer><!-- #colophon -->
|
||
|
|
||
|
<?php wp_footer(); ?>
|
||
|
|
||
|
</body>
|
||
|
</html>
|