Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to integrate HTML pages into WordPress?

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.

like image 439
capri Avatar asked Jun 14 '12 06:06

capri


3 Answers

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.

like image 191
Aniket Avatar answered Oct 11 '22 11:10

Aniket


You need http://themematcher.com/

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

like image 32
Jeff Daly Avatar answered Oct 11 '22 12:10

Jeff Daly


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

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

like image 22
Libin Avatar answered Oct 11 '22 12:10

Libin