Learning site for website creation

管理画面下部の文章を変更する

公開日:2014年10月26日

WordPress管理画面下部の文章を変更する。

FW096

//管理画面下部の文章を変更する
function change_admin_footer_text () {
    echo '文字を変更';
}
add_filter('admin_footer_text', 'change_admin_footer_text');

FW097