Skip to content

Instantly share code, notes, and snippets.

@lepittenger
Last active February 22, 2016 23:05
Show Gist options
  • Save lepittenger/b2d5ea38db515ee92fc7 to your computer and use it in GitHub Desktop.
Save lepittenger/b2d5ea38db515ee92fc7 to your computer and use it in GitHub Desktop.
Customize Genesis footer
//* Customize the entire footer
remove_action( 'genesis_footer', 'genesis_do_footer' );
add_action( 'genesis_footer', 'highspire_custom_footer' );
function highspire_custom_footer() {
?>
<p>&copy; Copyright 2012 - <?php echo date('Y'); ?> <a href="<?php echo get_bloginfo('url'); ?>"><?php echo get_bloginfo('name'); ?></a>, all rights reserved. Site by me, of course.</p>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment