Skip to content

Instantly share code, notes, and snippets.

@pasadamedia
Created November 28, 2014 06:45
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 pasadamedia/590f885a8bf5aa85b5c7 to your computer and use it in GitHub Desktop.
Save pasadamedia/590f885a8bf5aa85b5c7 to your computer and use it in GitHub Desktop.
Customize Genesis footer credits.
/**
* Customize Genesis footer credits.
*
*/
function pasada_footer_creds_text() {
echo '<div class="creds"><p>&copy; Copyright ' . date('Y') . ' <a href="http://www.globalmindbody.org/" title="Global Mind Body" target="_blank">Global Mind Body</a> &middot;&nbsp;<a href="/contact/" title="Contact us">Contact</a>&nbsp;&middot;&nbsp;<a href="/privacy/" title="Privacy policy">Privacy</a>&nbsp;&middot;&nbsp;<a href="/terms/" title="Terms of use">Terms</a></p></div>';
}
add_filter( 'genesis_footer_creds_text', 'pasada_footer_creds_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment