Genesis Footer Credit Copyright line
<?php //<~ don't copy me
add_filter( 'genesis_footer_creds_text', 'wpb_footer_copyright_text' );
/**
* Change Genesis Footer Credit Copyright line
* @link http://wpbeaches.com/changing-genesis-theme-copyright-line-footer-wordpress/
*/
function wpb_footer_copyright_text () {
$copyright = '<div class="creditline"><p>Copyright ©' . date('Y') . ' · <a href="http://client.com">Client</a> - All Rights Reserved · Website by <a href="http://designer.com" rel="nofollow">Designer</a></p></div>';
return $copyright;
}