Installing WordPress Locally
Download and install WordPress on your local WAMP server — setup wizard, database connection, and first login.
Installing WordPress Locally
With WAMP running and a database created, let's install WordPress on your local machine.
Step 1: Download WordPress
- Go to wordpress.org
- Click "Get WordPress" → Download
- You'll get a
.zipfile (e.g.,wordpress-6.x.zip)
Step 2: Extract to WAMP
- Extract the zip file
- You'll get a folder called
wordpress - Move or rename it to something like
developer-coffee - Place it inside
C:\wamp64\www\ - Your path should be:
C:\wamp64\www\developer-coffee\
Step 3: Run the Setup Wizard
- Ensure WAMP is running (green icon)
- Open your browser and go to http://localhost/developer-coffee
- WordPress displays the setup wizard
- Select your language → click "Continue"
- WordPress tells you it needs database information → click "Let's go!"
Step 4: Database Configuration
Fill in the database details:
| Field | Value |
|---|---|
| Database Name | wordpress_dev (the one you created in phpMyAdmin) |
| Username | root |
| Password | (leave blank — WAMP's default) |
| Database Host | localhost |
| Table Prefix | wp_ (default is fine) |
Click "Submit" → WordPress verifies the connection → click "Run the installation".
Step 5: Site Setup
Fill in your site details:
| Field | Value |
|---|---|
| Site Title | Developer Coffee |
| Username | admin (or a custom username) |
| Password | Choose a strong password |
| Your email address | |
| Search Engine Visibility | Check "Discourage search engines" (it's local) |
Click "Install WordPress" — done!
Step 6: First Login
- Go to http://localhost/developer-coffee/wp-admin
- Log in with the username and password you just created
- You'll see the WordPress Dashboard
WordPress File Structure
developer-coffee/
├── wp-admin/ ← Admin dashboard files
├── wp-content/ ← YOUR content: themes, plugins, uploads
│ ├── themes/ ← Theme files go here
│ ├── plugins/ ← Plugin files
│ └── uploads/ ← Media uploads (images, etc.)
├── wp-includes/ ← WordPress core files (don't edit)
├── wp-config.php ← Database configuration
└── index.php ← WordPress entry point
Important URLs
| URL | What It Shows |
|---|---|
http://localhost/developer-coffee/ | Your website (front-end) |
http://localhost/developer-coffee/wp-admin | WordPress admin dashboard |
http://localhost/developer-coffee/wp-login.php | Login page |
Key Takeaways
- Download WordPress from wordpress.org and extract it into WAMP's
wwwfolder - The setup wizard connects WordPress to your database
- The admin dashboard is at
/wp-admin - Your themes go in
wp-content/themes/ - Never edit files in
wp-includes/orwp-admin/— they're core files