Samples how to edit the footer credits
//* Customize the credits - just a sample
add_filter( 'genesis_footer_creds_text', 'sp_footer_creds_text' );
function sp_footer_creds_text() {
echo '<p>';
echo 'Copyright © ';
echo date('Y');
echo ' · <a href="http://sg-layout.com">SG-Layout</a> · <a href="http://sg-layout.com/kontakt/impressum/" title="Impressum">Impressum</a> · <a href="http://sg-layout.com/kontakt/agb/" title="AGB">AGB</a> · <a href="http://sg-layout.com/archiv/" title="Archiv">Archiv</a> ';
echo '</p>';
}
//* Footer credits with genesis classes
add_filter( 'genesis_footer_creds_text', 'sp_footer_creds_text' );
function sp_footer_creds_text() {
echo '<div class="one-third first"><p>';
echo 'Copyright © ';
echo date('Y');
echo '</p></div>';
echo '<div class="one-third">A Dynamik skin</div>';
echo '<div class="one-third">Design by <a href="http://sg-layout.com">SG-Layout</a>';
echo '</div>';
}