Skip to content

Instantly share code, notes, and snippets.

@frankschrijvers
Created October 28, 2014 13:39
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 frankschrijvers/d5644a0216891180aff0 to your computer and use it in GitHub Desktop.
Save frankschrijvers/d5644a0216891180aff0 to your computer and use it in GitHub Desktop.
custom_genesis_credits
// 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 ="&middot;"] &middot; 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