Created
April 1, 2013 16:50
-
-
Save joshuafredrickson/5286127 to your computer and use it in GitHub Desktop.
WordPress - Genesis: Change footer copyright text
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
/** Change footer copyright text */ | |
add_filter('genesis_footer_creds_text', 'op_footer_creds_text'); | |
function op_footer_creds_text( $creds ) { | |
$creds = 'Copyright © '.date('Y').' <a href="'.home_url().'">'.get_bloginfo('description').'</a> · All Rights Reserved.'; | |
return $creds; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment