Skip to content

Instantly share code, notes, and snippets.

@Edwardtonnn
Created May 17, 2018 22:21
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 Edwardtonnn/0031dcc0d0c99b6ea50515e71b3c9502 to your computer and use it in GitHub Desktop.
Save Edwardtonnn/0031dcc0d0c99b6ea50515e71b3c9502 to your computer and use it in GitHub Desktop.
Genesis Custom Footer
//* Customize the entire footer
remove_action( 'genesis_footer', 'genesis_do_footer' );
add_action( 'genesis_footer', 'custom_footer' );
function custom_footer() {
?>
<p>&copy; Copyright 2012 <a href="http://mydomain.com/">My Domain</a> &middot; All Rights Reserved &middot; Powered by <a href="http://wordpress.org/">WordPress</a> &middot; <a href="http://mydomain.com/wp-admin">Admin</a></p>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment