Skip to content

Instantly share code, notes, and snippets.

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