Last active
August 29, 2015 14:21
-
-
Save kurozumi/7cbdb8c4c85ea70ec109 to your computer and use it in GitHub Desktop.
【ワードプレス】管理画面のmemory_limitを変更する方法
This file contains 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
add_filter('admin_memory_limit', function($memory_limit){ | |
return '512M'; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment