Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created June 9, 2019 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/eb837ba7c4f661cd36b298ef42c11ea8 to your computer and use it in GitHub Desktop.
Save billerickson/eb837ba7c4f661cd36b298ef42c11ea8 to your computer and use it in GitHub Desktop.
<?php
add_filter('genesis_footer_backtotop_text', 'footer_backtotop_filter');
function footer_backtotop_filter($backtotop) {
$backtotop = '[footer_backtotop text="write something here"]';
return $backtotop;
}
add_filter('genesis_footer_creds_text', 'footer_creds_filter');
function footer_creds_filter($creds) {
$creds = 'Copyright @ 2010 &amp;middot <a href="http://" rel="nofollow">website</a> &amp;middot <a href="http://website" title="" rel="nofollow">Terms</a> &amp;middot <a href="http://website/policy" rel="nofollow">Privacy Policy</a>
';
return $creds;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment