Add custom theme credits. This example also includes social media icons on half
//* Customize theme credits
add_filter( 'genesis_footer_creds_text', 'olivia_footer_creds_text' );
function olivia_footer_creds_text () {
//* Credits
$content = '<div class="creds"><p>'.get_bloginfo( "name" ).' © ';
$content .= date('Y');
$content .= ' | Site By <a href="http://codedcreative.co/">Coded Creative</a>';
//* Terms and policies
if ( get_theme_mod( 'terms_policies_link', "" ) != "" ) {
$content .= '<a href="' . get_theme_mod( 'terms_policies_link', '') . '"> | Terms + Policies</a>';
}
$content .= '</p></div>';
//* Social icons
$content .= '<div class="footer-right social-icons">';
$content .= display_social_icons($c);
$content .= '</div>';
echo $content;
}