Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active December 1, 2019 16:53
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 braddalton/1bb6fd8cd4512f2c568ebbdd07ab36d1 to your computer and use it in GitHub Desktop.
Save braddalton/1bb6fd8cd4512f2c568ebbdd07ab36d1 to your computer and use it in GitHub Desktop.
Genesis Footer Modification https://wp.me/p1lTu0-iLf
remove_action( 'genesis_footer', 'genesis_do_footer' );
add_action( 'genesis_footer', 'sp_custom_footer' );
function sp_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