Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Created January 19, 2013 14:13
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 WebEndevSnippets/4572861 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/4572861 to your computer and use it in GitHub Desktop.
Genesis: Customize Footer Credits
add_filter( 'genesis_footer_creds_text', 'shireman_footer_creds_text' );
/**
* Customize the footer credits
*
*/
function shireman_footer_creds_text() {
echo '<div class="creds"><p>';
echo 'Copyright &copy; ';
echo date( 'Y' );
echo ' &middot; <a href="'.home_url().'">'.get_bloginfo('name').'</a> &middot; Site Design by <a href="http://www.webendev.com/" title="WebEndev LLC">WebEndev</a>';
echo '</p></div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment