2013-02-05 114 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> 
开始