The following is a code snippet originally posted by Daniel McClure on GitHub as a Gist.
wp-config.php
“`php
/* Increase WordPress Memory Allocation */
define( ‘WP_MEMORY_LIMIT’, ‘128M’ );
“`
Original Gist
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
/* Increase WordPress Memory Allocation */ | |
define( 'WP_MEMORY_LIMIT', '128M' ); |
Leave a Reply