Skip to content

Instantly share code, notes, and snippets.

@JiveDig
Last active December 17, 2015 06:49
Show Gist options
  • Save JiveDig/5568523 to your computer and use it in GitHub Desktop.
Save JiveDig/5568523 to your computer and use it in GitHub Desktop.
// Customize the credits
add_filter( 'genesis_footer_creds_text', 'custom_footer_creds_text' );
function custom_footer_creds_text() {
echo '<div class="creds"><p>';
echo 'Copyright &copy; ';
echo date('Y');
echo ' &middot; <a href="/">Business Name</a><br />Website by <a href="http://thestizmedia.com" title="The Stiz Media">The Stiz Media</a>';
echo '</p></div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment