Created
November 26, 2012 07:05
-
-
Save tobedoit/4146965 to your computer and use it in GitHub Desktop.
Wordpress: change footer text in admin panel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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