How to integrate a custom landing page on wordpress?
I basically created a wordpress site also i creat开发者_高级运维ed a landing page that looks nothing like the wordpress site its already fully codeded in html/css now i was wondering how i would make it the wordpress home page
Thanks
Assuming you are using wordpress 3+ You can do the following.
- Save your html into your theme dir as a php page, name it something like template-home.php
- Add the following to the top of that page /* Template Name: Custom Homepage */
- Create a new page inside wordpress. Name it anything you like such as "Static Home"
- In the right sidebar under "Page Attributes" there should be a dropdown containing your "Custom Homepage" template. Select it and save.
- Go to Settings -> Reading. Check the "A static page" under "Front page displays:" and select your page that you made in step 3. Your static page should now be the homepage.
More here... http://codex.wordpress.org/Creating_a_Static_Front_Page
精彩评论