Skip to content

Instantly share code, notes, and snippets.

@graylaurenm
Last active December 8, 2016 15:30
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 graylaurenm/e65630df61c2e4943df036c311ca41cb to your computer and use it in GitHub Desktop.
Save graylaurenm/e65630df61c2e4943df036c311ca41cb to your computer and use it in GitHub Desktop.
<?php // don't include this line
/**
* Customize the credits.
* @since 1.0.0
*/
add_filter( 'genesis_footer_creds_text', 'customgenesis_footer_copyright' );
function customgenesis_footer_copyright() {
$creds = '[footer_copyright before="Copyright" after=" "]' . get_bloginfo ( 'name' );
return $creds;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment