Code
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
<?php | |
function custom_admin_footer() { | |
echo ' お困りの際は<a href="http://example.com/" target="_blank">弊社</a>までお気軽にお問い合わせ下さい。TEL:03-1234-5678'; | |
} | |
add_filter('admin_footer_text', 'custom_admin_footer'); | |
?> |
Screen shot
Note
Description | 管理画面のフッターのテキストを任意のテキストに変更する |
---|---|
WordPress Ver. | 3.3.1 |
Via | – |