Skip to content

Instantly share code, notes, and snippets.

@adambradford
Last active April 9, 2018 10:20
Show Gist options
  • Save adambradford/db98c93b09366327c2a08e3b23deb24d to your computer and use it in GitHub Desktop.
Save adambradford/db98c93b09366327c2a08e3b23deb24d to your computer and use it in GitHub Desktop.
Change the footer content in a WordPress site built with the Genesis Framework
<?php
//* Add this to your functions.php file. Do NOT include the opening php tag
//* Change the footer content
add_filter('genesis_footer_creds_text', 'ab_footer_creds_filter');
function ab_footer_creds_filter( $creds ) {
$creds = '[footer_copyright] <a href="http://www.example.com">Your Name</a>';
return $creds;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment