Last active
December 17, 2015 06:49
-
-
Save JiveDig/5568523 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 © '; | |
echo date('Y'); | |
echo ' · <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