1 | 62a63,69 |
---|
2 | > |
---|
3 | > // check content directory exists |
---|
4 | > |
---|
5 | > if (!is_dir(WP_CONTENT_DIR)) { |
---|
6 | > $die = __( "There doesn't seem to be a <code>wp-content</code> directory. (" . WP_CONTENT_DIR . ") I need this before we can get started." ); |
---|
7 | > wp_die( $die, __( 'WordPress › Error' ) ); |
---|
8 | > } |
---|