How to customise the footer Genesis Child Themes
No need to install any special plugins – this is easily done by adding the following snippet to the functions.php file in your child theme:
add_filter('genesis_footer_creds_text', 'sp_footer_creds_filter');
function sp_footer_creds_filter( $creds ) {
$creds = '[footer_copyright] · My Custom Link · Built on the Genesis Framework';
return $creds;
}
This can be copied by visiting https://gist.githubusercontent.com/studiopress/5700192/raw/74883d601cffd925ffbc0194f9e58d1016dd6e84/credits-2.php
Further customisations can be found at https://my.studiopress.com/snippets/footer/