Created
October 20, 2013 07:43
-
-
Save jamiemitchell/7066134 to your computer and use it in GitHub Desktop.
Simple footer filter for Genesis
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
<?php | |
/* Site footer | |
------------------------------------------------------------ */ | |
add_filter('genesis_footer_creds_text', 'jm_footer_creds_text'); | |
function jm_footer_creds_text($creds) { | |
$creds = '© 2013 — All Rights Reserved.'; | |
return $creds; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment