You can convert your html pages to wordpress pages by using template pages for your
each menus.Before that create files name header.php,index.php,sidebar.php,footer.php
,style.css in your theme folder.Then follow the below steps:
1. Include all the contents of your home.html upto your menu creation like this in your
header.php:
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Course</title>
</head>
<body>
<div id="wrapper">
<div class="w1">
<div class="w2">
<!-- header -->
<header id="header">
<div class="line"></div>
<!-- logo -->
<h1 class="logo"><a href="#">Company Logo</a></h1>
<!-- main nav -->
<nav id="nav">
<!--**replace your menu listings by the given below codes**-->
<?php wp_nav_menu(array('theme_location' => 'primary')); ?>
</nav>
<div class="clear"></div>
</header>
<?php wp_head(); ?>
2. In index.php, include the body contents of home.html
in between the below codes:
<?php
/**
* Template Name: home
*
* Selectable from a dropdown menu on the edit page screen.
*/
?>
<?php get_header(); ?>
//body contents of home page
<?php get_footer(); ?>
3.Likewise, you can include as much menu you want.Just by changing like this for about
us:
<?php
/**
* Template Name: aboutus
*
* Selectable from a dropdown menu on the edit page screen.
*/
?>
<?php get_header(); ?>
//body contents of aboutus page
<?php get_footer(); ?>
4. If you have any footer contents(contents needed to display at the bottom of all
pages).Then include the contents in footer.php.If no contents is there,then
also simply create a file named footer.php.
5. Include the side contents to sidebar.php(contents to be displayed in right side of
the page).If no side contents are there.Then,simply create sidebar.php.
5. style.css,containing the css for all pages.
6.After creating all html files to .php files.Open the admin dashboard of your website.
In that open,Pages->Add new.In Add New Page,Enter the menu name(Home) in title and in
right side,click the Template dropdown and select the template name(home) and click
Publish button.
7.Likewise,create pages for all menus by giving title and selecting template name from
the template dropdown and click publish button after selecting.
8.Then,open Appearance->Menus.Then Menus page will open,in that on left side corner,you
will see Pages tag,click view all and check all the pages you want to display as
menus in your website and click Add to Menu button.
9.Then,the selected pages will be shown on right side,in bottom you will see Save Menu
button,click it.
8.After finishing all,on top left corner click on the website name and see the website
with the following menus and their corresponding pages.
嗨@songdogtech,我deinitely想我的網頁是由最終用戶,即文本編輯,添加/刪除圖像等會很感激做到這一點的最好辦法還是請點我一個展示這一點的網站。謝謝。 – tonyf 2010-08-16 14:11:04
嗨@songdogtech - 我對你的評論有些困惑:「頁面必須是WP後端的一部分,並駐留在數據庫中,以便在編輯器中編輯。」所以我明白,你是說我只是不能採取一個about-us.html頁面源,我已經在Dreamweaver中創建,進入WP-Admin,頁面,添加新頁面並將html代碼放入html選項卡在
標籤內,這些標籤還可能包含圖像供我稍後再次更新?如果不是,我該怎麼辦,因爲這些頁面不會是靜態頁面?謝謝。 – tonyf 2010-08-16 14:29:53