Created
April 20, 2017 18:59
-
-
Save fernandiez/472b8c1c9f08fb7e4e4533f0ceef37bd to your computer and use it in GitHub Desktop.
Change Genesis Footer Credit Copyright line
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Change Genesis Footer Credit Copyright line | |
add_filter( 'genesis_footer_creds_text', 'wpb_footer_copyright_text' ); | |
/** | |
* Change Genesis Footer Credit Copyright line | |
* @link http://wpbeaches.com/changing-genesis-theme-copyright-line-footer-wordpress/ | |
*/ | |
function wpb_footer_copyright_text () { | |
$copyright = '<div class="creditline"><p>Copyright ©' . date('Y') . ' · <a href="http://www.domain.com/">Site Name</a> · <a href="#">Link</a> · <a href="#">Link</a> · Site Description.</p></div>'; | |
return $copyright; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment