Skip to content

Instantly share code, notes, and snippets.

@tobedoit
Created November 26, 2012 07:05
Show Gist options
  • Save tobedoit/4146965 to your computer and use it in GitHub Desktop.
Save tobedoit/4146965 to your computer and use it in GitHub Desktop.
Wordpress: change footer text in admin panel
/* Change footer text in WordPress admin panel **************************************************
** http://www.instantshift.com/2012/03/06/21-most-useful-wordpress-admin-page-hacks/ ********* */
/* !관리자 페이지 푸터 카피라이트 변경 ************************************************************** */
function remove_footer_admin () {
echo '상록수장학재단을 찾아주셔서 감사합니다.';
}
add_filter('admin_footer_text', 'remove_footer_admin');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment