Footer content in Genesis, out of the box will appear like this:
If you’d like to modify it, add this in child theme’s functions.php
:
add_filter( 'genesis_footer_creds_text', 'custom_footer_creds_filter' );
/**
* Change Footer text.
*
* @link https://my.studiopress.com/documentation/customization/shortcodes-reference/footer-shortcode-reference/
*/
function custom_footer_creds_filter( $creds ) {
$creds = '[footer_copyright before="Copyright "] [footer_childtheme_link before ="· "] on [footer_genesis_link] · [footer_wordpress_link] · [footer_loginout]';
return $creds;
}
and make your changes.
[footer_childtheme_link]
‘s link text and URL are taken from this code block:
// Child theme (do not remove).
define( 'CHILD_THEME_NAME', 'Genesis Sample' );
define( 'CHILD_THEME_URL', 'http://www.studiopress.com/' );
define( 'CHILD_THEME_VERSION', '2.3.0' );
You might want to set the CHILD_THEME_NAME and CHILD_THEME_URL to your site’s name and your URL (the ones you want to appear in the footer) respectively.