How to increase wp memory limit

Question

I have a theme and I get this warning that i have to increase the WP Memory Limit. I’ve heard php memory limit but not wp memory limit. How do i increase it?

Answer ( 1 )

    0
    2023-01-26T14:53:00+00:00

    Hi,

    You need to edit your wp-config.php file. Open it in a text editor (not MS word) or notepad and add the following constant under WP_DEBUG:

    define( 'WP_MEMORY_LIMIT', '256M' );

Leave an answer