Skip to content

Instantly share code, notes, and snippets.

@jonwatson87
Created June 20, 2016 23:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonwatson87/5d49f8e54fcab05898304041866fca00 to your computer and use it in GitHub Desktop.
Save jonwatson87/5d49f8e54fcab05898304041866fca00 to your computer and use it in GitHub Desktop.
Genesis Custom Footer
// Custom Footer
remove_action( 'genesis_footer', 'genesis_do_footer' );
add_action( 'genesis_footer', 'your_custom_footer' );
function your_custom_footer() {
echo '<p>';
echo '&copy; Copyright ';
echo '<a href="http://yourdomain.com">Your Domain Name </a>';
echo date( 'Y' );
echo ' &middot; All rights reserved';
echo '</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment