Increase memory

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

Increase memory for admin area

define('WP_MAX_MEMORY_LIMIT', '1024M');

Turn on front end error messages

define( 'WP_DEBUG', true ); // PHP debugger

define( 'SCRIPT_DEBUG', true ); // CSS and JS debugger

Update Site and WordPress URL

Super handy when migrating a site to a new URL. These snippets will supersede the values stored in wp_options.

define('WP_SITEURL', 'https://munchwp.com');

define('WP_HOME', 'https://munchwp.com');