skip to Main Content

I’m looking to import a massive amount of HTML pages into a WP site. Because of the massive amount I would like to automate the process as much as possible. The site contains mostly text and img.
Which tools are the best choice for this task?

2

Answers


  1. In this scenario i would recommend you to use wp-importer plugin of wordpress its very use full for things like that.

    The WordPress Importer will import the following content from a WordPress export file

    Posts, pages and other custom post types, images, Comments ,Custom fields and post meta, also it can import Categories, tags and terms from custom taxonomies Authors

    link here

    Login or Signup to reply.
  2. Well I would divide this task into couple steps:

    1. Group content(html pages) into logic groups, maybe some of theme should have different authors
    2. Analyze html, find wrappers, etc, where content is stored
    3. custom coding part, scrape html with some scripts, maybe a php one into wordpress xml import file(s) i suggest to divide such huge amount into couple xml files.
    4. import via wordpress import tool
      Simple WordPress Import Structure XML Example

    Or you can try such plugin: HTML Import 2

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search