Customize Genesis Footer – https://www.oncecoupled.com/avoid-site-wide-external-links/
<?php // don't include this line
/**
* Customize the credits.
* @since 1.0.0
*/
add_filter( 'genesis_footer_creds_text', 'customgenesis_footer_copyright' );
function customgenesis_footer_copyright() {
$creds = '[footer_copyright before="Copyright" after=" "]' . get_bloginfo ( 'name' );
return $creds;
}