Code Snippets

Customize Footer Credits

add_filter( 'genesis_footer_creds_text', 'shireman_footer_creds_text' );
/**
* Customize the footer credits
*
*/
function shireman_footer_creds_text() {
echo '<div class="creds"><p>';
echo 'Copyright &copy; ';
echo date( 'Y' );
echo ' &middot; <a href="'.home_url().'">'.get_bloginfo('name').'</a> &middot; Site Design by <a href="http://www.webendev.com/" title="WebEndev LLC">WebEndev</a>';
echo '</p></div>';
}
view raw functions.php hosted with ❤ by GitHub