Skip to content

Instantly share code, notes, and snippets.

@jamiemitchell
Created October 20, 2013 07:43
Show Gist options
  • Save jamiemitchell/7066134 to your computer and use it in GitHub Desktop.
Save jamiemitchell/7066134 to your computer and use it in GitHub Desktop.
Simple footer filter for Genesis
<?php
/* Site footer
------------------------------------------------------------ */
add_filter('genesis_footer_creds_text', 'jm_footer_creds_text');
function jm_footer_creds_text($creds) {
$creds = '&copy; 2013 &mdash; All Rights Reserved.';
return $creds;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment