0

adobedreamweaverを使用して新しいワードプレステンプレートを作成する必要があります。画像スライダー、スタイリッシュなメニュー、コメントオプションを備えたテンプレートが欲しいです。基本から最後までご案内ください。

4

2 に答える 2

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>
于 2013-02-05T13:07:28.503 に答える
0

このチュートリアルが役に立つかもしれません:

http://www.adobe.com/devnet/dreamweaver/articles/dw-wordpress-multiscreentheme.html

これと同様に:

http://www.adobe.com/devnet/dreamweaver/articles/dw_wordpress_pt1.html

于 2013-02-05T11:46:10.943 に答える