
1. wp-admin
2. wp-content
3. wp-includes


- wp-admin
- wp-content
- wp-includes

- wp-admin
- wp-content
- wp-includes

- 워드프레스의 핵심 파일 중 하나
- 이 파일이 없다면 워드프레스는 동작하지 않는다.
// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'database_name_here' );
/** Database username */
define( 'DB_USER', 'username_here' );
/** Database password */
define( 'DB_PASSWORD', 'password_here' );
/** Database hostname */
define( 'DB_HOST', 'localhost' );
/** Database charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );
/** The database collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' );
define('WP_DEBUG', false);와 같은 디버깅 기능
테마는 다양한 템플릿이 존재하며 내가 원하는 디자인의 테마를 설치하여 사용할 수 있다.
wp-content의 파일내에 theme를 선택하면 관련된 css,js,img파일들이 있으며 이를 통해 커스터마이징이 가능하다.

-theme 안에는 현재 내가 사용하는 종류의 폴더가 있으며 그 안에는 그 테마를 구성하는 다양한 파일이 존재한다.