Skip to content

Instantly share code, notes, and snippets.

@puikinsh
Created February 23, 2014 16:37
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 puikinsh/9173749 to your computer and use it in GitHub Desktop.
Save puikinsh/9173749 to your computer and use it in GitHub Desktop.
Travelify footer copyright info without WordPress link
add_action( 'travelify_footer', 'travelify_footer_info', 30 );
/**
* function to show the footer info, copyright information
*/
function travelify_footer_info() {
$output = '<div class="copyright">'.__( 'Copyright &copy;', 'travelify' ).' '.'[the-year] [site-link]'.' '.__( 'Theme by', 'travelify' ).' '.'[th-link]'.'</div><!-- .copyright -->';
echo do_shortcode( $output );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment