Created
November 28, 2014 06:45
-
-
Save pasadamedia/590f885a8bf5aa85b5c7 to your computer and use it in GitHub Desktop.
Customize Genesis footer credits.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Customize Genesis footer credits. | |
* | |
*/ | |
function pasada_footer_creds_text() { | |
echo '<div class="creds"><p>© Copyright ' . date('Y') . ' <a href="http://www.globalmindbody.org/" title="Global Mind Body" target="_blank">Global Mind Body</a> · <a href="/contact/" title="Contact us">Contact</a> · <a href="/privacy/" title="Privacy policy">Privacy</a> · <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