2013-02-05 156 views
0

我需要使用adobe dreamweaver創建一個新的wordpress模板。我想要帶圖像滑塊的模板,時尚的菜單和評論選項。請引導我從基本到結束。創建wordpress模板

回答

0

WordPress模板與

<?php /* Template Name: Stylish Template */ ?> 
<?php get_header(); ?> // go to header.php add required js file for slider & menu through wordpress function() <?php wp_nav_menu($args); //check wordpress documentation for $args. 
<div id="slider"> 
--images will go here 
</div> 
<div id="content">--Content Goes here---These will be posts from any category or latest posts, look wordpress documentation for <?php comment_template() to add comments if they are disabled.?></div> 
開始