Skip to content

Instantly share code, notes, and snippets.

@arkadiusjonczek
Created November 12, 2015 08:25
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 arkadiusjonczek/a55c93b7c93ccc1e8d8a to your computer and use it in GitHub Desktop.
Save arkadiusjonczek/a55c93b7c93ccc1e8d8a to your computer and use it in GitHub Desktop.
Genesis change footer text
//* Change the footer text
add_filter('genesis_footer_creds_text', 'custom_footer_creds_filter');
function custom_footer_creds_filter( $creds ) {
$creds = '<p>Copyright [footer_copyright] <a href="http://www.arkadiusjonczek.com">Arkadius Jonczek</a> &middot;</p>';
return $creds;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment