Skip to content

Instantly share code, notes, and snippets.

@reasonstousegenesis
Created November 18, 2015 01:48
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save reasonstousegenesis/d5d3db4ac367e10bc4d2 to your computer and use it in GitHub Desktop.
Add an extra line of text to the footer with Genesis
<?php
// Paste the code BELOW this line into your child theme functions.
/**
* Add an extra line of text to the footer with Genesis
*
* @author Reasons to Use Genesis
* @link http://reasonstousegenesis.com/footer-filter/
*/
add_filter( 'genesis_footer_output', 'rtug_footer_output' );
function rtug_footer_output( $output ) {
return $output . '<p>This website is independently owned and no copyright infringement is intended.</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment