Skip to content

Instantly share code, notes, and snippets.

@shemul49rmc
Created October 29, 2013 12:53
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 shemul49rmc/7214098 to your computer and use it in GitHub Desktop.
Save shemul49rmc/7214098 to your computer and use it in GitHub Desktop.
Customize the credits
//* Customize the credits*http://iamshemul.com/?p=2395*//
add_filter( 'genesis_footer_creds_text', 'sp_footer_creds_text' );
function sp_footer_creds_text() {
echo '<div class="creds"><p>';
echo 'Copyright &copy; ';
echo date('Y');
echo ' &middot; <a href="YOUR_SITE_URL">SITE_NAME</a> &middot;All Rights Reserved &middot; Powered by <a href="http://wordpress.org/">WordPress</a> Built on the <a href="http://www.studiopress.com/themes/genesis" title="Genesis Framework">Genesis Framework</a>';
echo '</p></div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment