0
我是新的WordPress的,我創建一個網站使用wordpress。如何自定義WordPress的主頁?
你可以看到模擬了頁面在這裏http://www.site2preview.com/veejata/ver1/index.html
,我已經改變了的index.php作爲
<?php
get_header();
//get_template_part('loop', 'index');
?>
<div class="flt_left">
//dummy welcome text ..
</div>
<div class="flt_left">
//dummy latest post..
</div>
<?php get_sidebar(); ?>
<?php get_advt(); ?>
<?php get_footer(); ?>
現在我想知道如何創建一個自定義的頁面或區塊,以及如何能我將它們包括在index.page ..
此外,我想用戶應該能夠編輯從管理控制檯中的虛擬文本的歡迎..
在屬李想how to split the contents in the wordpress
和how to make them editable by admin
和how to include them in the pages
...
我使用的是最新的wordpress和index.php只有get_template_part('loop','index');你可以請鏈接任何其他教程來創建自定義主頁 – Vijay 2011-04-04 05:47:13
據我瞭解這個新功能'get_template_part'有助於創建子主題。看看這篇文章:http://voodoopress.com/2011/02/get_template_part-in-my-wordpress-theme/ – anubhava 2011-04-04 05:56:19
我們可以有一個頁面或阻止虛擬歡迎文本在他可以編輯的管理頁面的內容,使主頁的內容變化..我可以包括在PHP文件中的內容和使用像get_advt(),而不是編輯PHP文件,我想讓我的管理員編輯管理面板的內容非常類似於WordPress的網頁。如果是的話,那麼如何創建幷包含它們呢? – Vijay 2011-04-04 06:10:36