Customize the footer credits on a Genesis child theme.
This file contains 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>'; | |
} |
Leave a Reply