vote up 1 vote down star
1

So there is a lot of posts on the internet about how to convert your XHTML+CSS theme to Wordpress, but I have a Wordpress theme and want to convert it (or un-convert it) back to just XHTML+CSS.

Has anyone done this before? Anyone know of any resources (tutorials etc.) that I can use to help me do this?

Thanks

flag

5 Answers

vote up 0 vote down

I tried this:

wget -l2 -r -p -k -E http://www.example.com/

It works great as far as it goes, but it does not pull over images in the CSS File, so you'll need to ftp over or upload the theme files.

Also make sure you're wordpress site is using "Pretty Permalinks" so you don't end up with wacky urls like (http://www.example.com/index.html%3Fpage_id=2.html).

This might be a pretty good security measure as well. Try hacking a static site.

link|flag
vote up 2 vote down

Visit the Wordpress web page in question, right click on the page and select view source. This will give you the XHTML. You can then find the CSS by going to the files linked in the header

link|flag
vote up 0 vote down

You could also do it the hard way and rip appart the php files (removing the

First would be header.php, then single.php (or page.php or whatever page style you are trying to copy) then the footer.php

This would allow you to do it without a webserver.

link|flag
vote up 5 vote down

let's open the source code with your fave editor & replace WP functions with some test texts. if there's an "include" or "require" statement replace them with the destination file's contents. On the other hand you can run it on a server and just save the page as html, you'll have the static theme.

link|flag
vote up 5 vote down

Wordpress renders html. If you want a static version of your wordpress site you could use Wget.

wget -l2 -r -p -k -E http://www.example.com/
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.