How to integrate HTML pages into WordPress?

24,392

Solution 1

I am not sure of a direct way to implement a HTML page into a WordPress theme, but if you have made header and footer files for your website, then all you need to do is convert them to make them WordPress compatible.

You should refer to the codex.

You can also go for any of the WordPress frameworks listed here.

A WordPress theme is easy to understand if you know basic PHP. It has a set of files like

  • header.php // header file
  • footer.php // footer file
  • index.php // the index file
  • page.php // for your WP pages
  • single.php // for your WP posts
  • and some other files

Go through the codex and it shouldn't take long to get the hang of it.

Solution 2

You need http://themematcher.com/

It'll automatically take your site, styles, images etc and create a wordpress theme for you. Check it out

Solution 3

Search for HTML to WordPress theme conversion and you can find so many good tutorials.

Check this article: http://thethemefoundry.com/blog/html-wordpress/

Solution 4

Theres really only three ways:

  1. Hire a freelancer
  2. Convert manually by referring to http://codex.wordpress.org/
  3. Use an automated converter. Best one on the market is https://htmltowordpress.io
Share:
24,392
capri
Author by

capri

Updated on May 13, 2020

Comments

  • capri
    capri almost 4 years

    I have a page in HTML(index.html), and a folders named images, css, js that used in it.

    Now i have to do this in WordPress. Is there any plug in to convert Html to WordPress or any other way to do this in WordPress? Please help me.. i'm a beginner in WordPress.