Skip to content

Instantly share code, notes, and snippets.

@ZellSnippets
Created September 14, 2013 14:42
Show Gist options
  • Save ZellSnippets/6562600 to your computer and use it in GitHub Desktop.
Save ZellSnippets/6562600 to your computer and use it in GitHub Desktop.
PHP: WP: Genesis Footer Text
// Change Footer Creds Text
add_filter( 'genesis_footer_creds_text', 'wk_footer_text' );
function wk_footer_text() {
return '[footer_copyright] <a href="http://www.zell-weekeat.com">Zell Liew</a>';
// return 'Copyright [footer_copyright] [footer_childtheme_link] &middot; [footer_genesis_link] [footer_studiopress_link] &middot; [footer_wordpress_link] &middot; [footer_loginout]';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment