Skip to content

Instantly share code, notes, and snippets.

@bradleysa
Last active August 29, 2015 14:12
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 bradleysa/8b86fd66d0501a30bf87 to your computer and use it in GitHub Desktop.
Save bradleysa/8b86fd66d0501a30bf87 to your computer and use it in GitHub Desktop.
Highwind: Replace Footer Credits
<?php
// replace Footer Credits with a quote
function removeHighwindCredit() {
remove_action( 'highwind_footer', 'highwind_credit', 20 );
add_action( 'highwind_footer', 'my_footer_content' );
}
//add custom credits/text to the footer
function my_footer_content() {
echo '"The movement is contagious." &mdash; Yuri Kochiyama';
}
add_action('after_setup_theme','removeHighwindCredit');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment