diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html
index 4ec98ba067..4ca2a92d11 100644
--- a/docs/_layouts/default.html
+++ b/docs/_layouts/default.html
@@ -32,6 +32,7 @@
Install
Get started with Rails
Get started with Django
+ Get started with Wordpress
- Reference:
diff --git a/docs/wordpress.md b/docs/wordpress.md
new file mode 100644
index 0000000000..3e62e91b11
--- /dev/null
+++ b/docs/wordpress.md
@@ -0,0 +1,90 @@
+---
+layout: default
+title: Getting started with Fig and Wordpress
+---
+
+Getting started with Fig and Wordpress
+======================================
+
+Fig makes it nice and easy to run Wordpress in an isolated environment. [Install Fig](install.html), then write a `Dockerfile` which installs PHP and Wordpress:
+
+```
+FROM orchardup/php5
+
+ADD http://wordpress.org/wordpress-3.8.1.tar.gz /wordpress.tar.gz
+RUN tar -xzf /wordpress.tar.gz
+ADD wp-config.php /wordpress/wp-config.php
+
+ADD router.php /router.php
+```
+
+Next up, `fig.yml` starts our web service and a separate MySQL instance:
+
+```
+web:
+ build: .
+ command: php -S 0.0.0.0:8000 -t /wordpress
+ ports:
+ - 8000:8000
+ links:
+ - db
+db:
+ image: orchardup/mysql
+ ports:
+ - 3306:3306
+ environment:
+ MYSQL_DATABASE: wordpress
+```
+
+Our Dockerfile relies on two supporting files - first up, `wp-config.php` is the standard Wordpress config file with a single change to make it read the MySQL host and port from the environment variables passed in by Fig:
+
+```
+