Skip to content

Instantly share code, notes, and snippets.

@eugenoprea
Last active May 17, 2016 15:23
Show Gist options
  • Save eugenoprea/4700136 to your computer and use it in GitHub Desktop.
Save eugenoprea/4700136 to your computer and use it in GitHub Desktop.
How to Customize the Genesis Footer
/** Customize the entire footer */
remove_action('genesis_footer', 'genesis_do_footer');
add_action('genesis_footer', 'eo_custom_footer');
function eo_custom_footer()
{
echo '<p>';
echo 'Copyright &copy; ';
echo '2011 - ';
echo date('Y');
echo ' &middot; <a href="http://www.eugenoprea.com/" title="Eugen Oprea">Eugen Oprea</a> &middot; All rights reserved';
echo '</p></div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment