askdesign
7/17/2017 - 6:18 PM

Changing footer text in Genesis using genesis_footer_creds_text filter

July 17, 2017 by Bilal Akbar

//* Similar to Sridhar's code, but $creds section is easier for me to understand

//* Change the footer text
add_filter('genesis_footer_creds_text', 'sp_footer_creds_filter');
function sp_footer_creds_filter( $creds ) {
$creds = '[footer_copyright] &middot; <a href="http://mydomain.com">My Custom Link</a> &middot; Built on the <a href="http://www.studiopress.com/themes/genesis" title="Genesis Framework">Genesis Framework</a>';
return $creds;
}