Skip to content

Instantly share code, notes, and snippets.

@eugenoprea
Created February 3, 2013 01:32
Show Gist options
  • Save eugenoprea/4700121 to your computer and use it in GitHub Desktop.
Save eugenoprea/4700121 to your computer and use it in GitHub Desktop.
How to Customize the Genesis Footer - Credits
/** Customize the credits */
add_filter('genesis_footer_creds_text', 'eo_custom_footer_creds');
function eo_custom_footer_creds()
{
echo '<div class="creds"><p>';
echo 'Copyright &copy; ';
echo date('Y');
echo ' &middot; <a href="http://www.myawesomewebsite.com">My Awesome Website</a> &middot; Powered by <a href="http://www.eugenoprea.com/" title="Eugen Oprea">Eugen Oprea</a>';
echo '</p></div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment