Created
October 28, 2014 13:39
-
-
Save frankschrijvers/d5644a0216891180aff0 to your computer and use it in GitHub Desktop.
custom_genesis_credits
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', 'themebuilder_footer_creds_text' ); | |
function themebuilder_footer_creds_text() { | |
$creds = '[footer_copyright] [footer_childtheme_link before ="·"] · by <a href="http://www.themebuilder.nl" title="ThemeBuilder">ThemeBuilder</a>'; | |
return $creds; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment