Replies: 0
In the wp-config file there is this line:
/* That’s all, stop editing! Happy publishing. */
Is it correct that when I want to add code to my wp-config, like for example:
define( ‘WP_DEBUG’, false );
define( ‘DISALLOW_FILE_EDIT’, true );
define(‘WP_MEMORY_LIMIT’, ‘512M’);
that I have to add extra code in wp-config always above the line
/* That’s all, stop editing! Happy publishing. */
and never under this line?