管理画面の下部にあるバージョン番号を削除する
管理画面下部にあるバージョン番号を削除したい場合、テーマのfunctions.phpに下記のように記載します。
1 2 3 4 5 6 7 |
/** * 管理画面下部のバージョン番号を削除します。 */ function remove_footer_version() { remove_filter( 'update_footer', 'core_update_footer' ); } add_action( 'admin_menu', 'remove_footer_version' ); |