Created
August 27, 2016 10:20
-
-
Save Temmyhlee/8dcd16511c27b9269c644d676917a6dd to your computer and use it in GitHub Desktop.
Change credit text in Genesis footer.
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
//Add Copyright text | |
add_filter ( 'genesis_footer_creds_text', 'temmyhlee_custom_footer_credits', 10, 7); | |
function temmyhlee_custom_footer_credits ($creds ) { | |
; | |
$creds = '<p>[footer_copyright]. Made with <i class="ion-heart"></i> by <a href="http://temmyhlee.com/" target="_top">Temmyhlee</a> · Supported by <a href="http://moorgist.com" target="_blank">Moorgist.com</a></p> <p class = "affiliate"> Do note that I drop affiliate links all over this site as it helps me get bucked up. (Take no offence).</p>'; | |
return $creds; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment