diff --git a/Gruntfile.js b/Gruntfile.js
index c2b0477..59cc000 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -16,6 +16,11 @@ grunt.initConfig({
})()
});
-grunt.registerTask( "build", [ "build-posts", "build-resources" ] );
+grunt.registerTask( "copy-taxonomies", function() {
+ grunt.file.copy( "taxonomies.json",
+ grunt.config( "wordpress.dir" ) + "/taxonomies.json" );
+});
+
+grunt.registerTask( "build", [ "build-posts", "build-resources", "copy-taxonomies" ] );
};
diff --git a/pages/browser-support.md b/pages/browser-support.md
index daf8462..acff117 100644
--- a/pages/browser-support.md
+++ b/pages/browser-support.md
@@ -1,6 +1,10 @@
diff --git a/pages/download.md b/pages/download.md
index b32a4f7..3268734 100644
--- a/pages/download.md
+++ b/pages/download.md
@@ -1,6 +1,10 @@
diff --git a/pages/history.html b/pages/history.html
index c090d89..9f39afb 100644
--- a/pages/history.html
+++ b/pages/history.html
@@ -1,7 +1,9 @@
diff --git a/pages/support.md b/pages/support.md
index dc083a5..0a47d49 100644
--- a/pages/support.md
+++ b/pages/support.md
@@ -1,6 +1,10 @@
diff --git a/pages/team.html b/pages/team.html
index a0ad9c3..863e4a9 100644
--- a/pages/team.html
+++ b/pages/team.html
@@ -1,7 +1,9 @@
diff --git a/taxonomies.json b/taxonomies.json
new file mode 100644
index 0000000..946ba3a
--- /dev/null
+++ b/taxonomies.json
@@ -0,0 +1,12 @@
+{
+ "category": [
+ {
+ "slug": "uncategorized",
+ "name": "Uncategorized"
+ },
+ {
+ "slug": "meta",
+ "name": "Project"
+ }
+ ]
+}