northumbrian
5/4/2016 - 1:52 PM

Samples how to edit the footer credits

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 &copy; ';
echo date('Y');
echo ' &middot; <a href="http://sg-layout.com">SG-Layout</a> &middot; <a href="http://sg-layout.com/kontakt/impressum/" title="Impressum">Impressum</a> &middot; <a href="http://sg-layout.com/kontakt/agb/" title="AGB">AGB</a> &middot; <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 &copy; ';
	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>';
}