Skip to content

Instantly share code, notes, and snippets.

@jonschr
Created October 19, 2015 00:19
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 jonschr/1a08924f87885fa46c82 to your computer and use it in GitHub Desktop.
Save jonschr/1a08924f87885fa46c82 to your computer and use it in GitHub Desktop.
Filter the footer text and replace it with some of out own
<?php
//* Don't include the opening php tag
//* Filter the footer credits
add_filter( 'genesis_footer_creds_text', 'prefix_footer_creds_text' );
function prefix_footer_creds_text( $args ) {
$args = '[footer_copyright] ' . get_bloginfo( 'name' ) . '<br/>Website handcrafted with love by Your Name';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment