Moving WordPress.com theme and widget settings to self-hosted site?

How can I move theme and plugin (widget) settings from a WordPress.com site to a self-hosted installation? My client is moving from hissite.wordpress.com to his own host at hissite.com.

I have moved over the content using the Import/Export feature, but I can’t access the theme and widget plugin files, since WordPress.com offers no FTP access. We also don’t want to pay WordPress.com to move these files over.

Related posts

Leave a Reply

2 comments

  1. First off, check if the theme is available in wordpress.org themes: http://wordpress.org/extend/themes/

    If it’s not, find the name of the theme developer and contact them. Many developers of wordpress.com themes are happy for people to use their themes on self-hosted WordPress blogs. The developer’s name and contact details can be found by looking at style.css. You can see the content of style.css by viewing the CSS file in your browser. Alternatively, navigate to style.css for the theme you want in the wordpress.com theme repository: https://wpcom-themes.svn.automattic.com/ This is also where you download the theme.

    You must seek permission from the theme’s author before you download and use their theme unless the theme’s style.css includes a note to say it is released under the GPL. If it’s GPL then permission has already been given.

    For plugins, you need to download them from wordpress.org. If they are not available there you will need to find acceptable replacements or track down who developed them and ask if the plugins are going to be made available.

  2. EDIT:

    Here is what WordPress.com has to say on moving your blog to self hosted: http://en.support.wordpress.com/moving-a-blog/#moving-to-wordpress-org

    IGNORE:

    Here is my method of moving a wordpress install from subdomain.example.com to example.com Using the tools I have its the quickest way for me to move a dev install to a live install.

    1. Compress all files of WP into zip and upload to new site.
    2. Extract files on new domain. Create new database on new domain.
    3. Update wp-config to point to new domain.
    4. Export database from subdomain as an SQL file.
    5. Open SQL file in a text editor program and do a find and replace.
    6. Find http://subdomain.example.com replace with http://www.example.com
    7. Import SQL into new database.
    8. Navigate to new domain.
    9. All done