m0g / wp2ghost

Convert Wordpress XML exports to Ghost JSON import files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

This script will convert Wordpress XML exports (WXR) to the Ghost JSON format. This JSON file can then be directly imported using the Ghost debug interface.

While there is a Wordpress plugin that will export to the Ghost format directly, it only seems to work some of the time, and users of Wordpress.com will have a hard time using it seeing how WP.com doesn't allow plugins at all.

This is a simple command-line tool that takes a Wordpress XML file as input and prints the corresponding Ghost JSON to standard out. It currently converts the following:

  • Posts: title, slug, content, page/post, featured, status, creation/publication date
  • Catgeories: name, slug, description (converted to tags)
  • Tags: name, slug

Wordpress authors are parsed, but not added to the output yet because Ghost currently only supports editing the primary user during imports.

To run it, you need to have NodeJS installed. You can then just run:

$ cd wp2ghost
$ npm install
$ node bin/wp2ghost.js <your-wordpress-xml> > ghost.json

Next, go to http://example.com/ghost/debug and import ghost.json, and all your content should show up!

Happy migrating!

About

Convert Wordpress XML exports to Ghost JSON import files

License:MIT License


Languages

Language:JavaScript 100.0%