Created
February 27, 2017 20:56
-
-
Save pelmered/096d436d237454fd78051c14982609c6 to your computer and use it in GitHub Desktop.
Fix issues with symlinked wordpress
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
<?php | |
/** | |
* Fixes issues with symlinked wordpress | |
*/ | |
if ( defined('ABSPATH') ) { | |
$fixed_abspath = str_replace( 'wordpress', 'public', ABSPATH ); | |
define('WP_CONTENT_DIR', $fixed_abspath . 'wp-content'); | |
define('WP_PLUGIN_DIR', $fixed_abspath . 'wp-content/plugins'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment