amberjean7
9/22/2017 - 3:20 AM

change-footer-text.php

// Change the footer text.
add_filter('genesis_footer_creds_text', 'ambre_footer_creds_filter');
function ambre_footer_creds_filter( $creds ) {
    $creds = 'Copyright [footer_copyright] &middot; Theme</a> by <a href="https://ambrethemes.com/">Ambre Themes</a>';
    return $creds;
}