Skip to content
This repository was archived by the owner on Jan 25, 2022. It is now read-only.

Commit bf595c7

Browse files
authored
Fix WP_CONTENT_DIR for BOX_DIRECTORY_LAYOUT == 'skeleton'
1 parent ce87c13 commit bf595c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

www/wp-config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969

7070
} else if ( 'skeleton' === BOX_DIRECTORY_LAYOUT ) {
7171
define( 'WP_SITEURL', BOX_URL_SCHEME . '://' . SITE_DOMAIN . '/wp' );
72-
define( 'WP_CONTENT_DIR', dirname( __FILE__ ) . '/content' );
72+
define( 'WP_CONTENT_DIR', dirname( dirname( __FILE__ ) ) . '/content' );
7373
define( 'WP_CONTENT_URL', BOX_URL_SCHEME . '://' . SITE_DOMAIN . '/content' );
7474
}
7575

0 commit comments

Comments
 (0)