Skip to content

Instantly share code, notes, and snippets.

@Temmyhlee
Created August 27, 2016 10:20
Show Gist options
  • Save Temmyhlee/8dcd16511c27b9269c644d676917a6dd to your computer and use it in GitHub Desktop.
Save Temmyhlee/8dcd16511c27b9269c644d676917a6dd to your computer and use it in GitHub Desktop.
Change credit text in Genesis footer.
//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> &middot; 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