Skip to content

Instantly share code, notes, and snippets.

@aaronhartland
Created August 1, 2012 16:31
Show Gist options
  • Save aaronhartland/3228522 to your computer and use it in GitHub Desktop.
Save aaronhartland/3228522 to your computer and use it in GitHub Desktop.
<?php
/** Customize the credits */
add_filter('genesis_footer_creds_text', 'custom_footer_creds_text');
function custom_footer_creds_text() {
echo '<div class="creds"><p>';
echo 'Copyright &copy;';
echo '&nbsp;' . date('Y') ;
echo '&nbsp;' . get_bloginfo('name') ;
echo ' &middot; All Rights Reserved';
echo '</p>';
echo '<p>';
echo ' Powered by <a href="http://www.aaronhartland.com/get-genesis" target="_blank" title="Genesis Framework">Genesis</a> and the <a href="http://www.aaronhartland.com/latitude-a-free-genesis-child-theme/" target="_blank" title="Latitude Child Theme">Latitude Theme</a> ';
echo '</p></div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment