We were unable to load Disqus. If you are a moderator please see our troubleshooting guide.

Julian Pineda • 7 years ago

Awesome article. Thank you so much! iIwas wondering if it's possible to write a guide on how to make the migration process. Things like how do you get the data out of your wordpress, how do you achieve the same look and feel (or close), etc.

Ton Nguyen • 7 years ago

Hey Julian,

I did not manage to migrate the data from wordpress to contentful, as I mentioned in the post, there are some articles and plugins for doing that, but I could not get it to work, then I decided to do the dirty job: copy paste.

Regarding the look and feel, I copied the style.css(don't remember exactly the name) file from the existing theme in wordpress, then include it in /layouts/index.js. Then have another file named style.overwrite.css where I have some fixes to make it look perfect. Here is how I import the style in index.js:

import "./style.css";
import "./style.overwrite.css";

So it is quite straightforward, keep using existing css file, and tweak only parts we need to.