I made an HTML 5 web-template, but I know nothing of PHP, ASP.NET, etc. I love how WordPress works, but still no PHP. How can I integrate things into my template? Would it make much trouble?
Leave a Reply
You must be logged in to post a comment.
I made an HTML 5 web-template, but I know nothing of PHP, ASP.NET, etc. I love how WordPress works, but still no PHP. How can I integrate things into my template? Would it make much trouble?
You must be logged in to post a comment.
You have to separate your template into multiple files (header.php, footer.php, single.php, page.php, etc.) to turn your template into a WordPress theme. You have to first understand how WordPress works. For this, you can start here.
I was in the same situation as you two weeks ago. I understand how things work and now I own a theme (very simple, but functional).
You will have to learn just a bit of how PHP works if you want to integrate your template in WordPress. WordPress uses PHP to render the page. To be simple, PHP loads the template and create the render for the browser with the values needed (like the title the posts, comments). So you have to understand how it works before to modify your HTML5 template.
I think you should learn the basics of PHP first of all, and should have basic knowledge of WordPress. There is a theme of WordPress:
http://wordpress.org/themes/blankslateâ
You can download this and convert this into your WordPress theme… just by replacing your HTML and CSS parts… But it has some code in PHP, so play with it with special care. You can get more information in How to create a WordPress theme?.