Skip to content

Instantly share code, notes, and snippets.

@JohnBunka
Created June 20, 2015 19:40
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 JohnBunka/68f7e7dad339dcd913c2 to your computer and use it in GitHub Desktop.
Save JohnBunka/68f7e7dad339dcd913c2 to your computer and use it in GitHub Desktop.
Genesis: Change the footer credits
//* Change the footer text
add_filter('genesis_footer_creds_text', 'sp_footer_creds_filter');
function sp_footer_creds_filter( $creds ) {
$creds = '[footer_copyright] &middot; <a href="http://pressavenue.com">WordPress for Business</a> &middot; [footer_loginout]';
return $creds;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment