2

初めての wp-theme の作成に成功しましたが、少し問題があります。経験不足だと思います。

これが私の問題です。Dreamweaver で index.html に基づいてテーマを作成しました。今、新しいページ (About) を追加しようとしていますが、index.html と about.html のコンテンツ レイアウトが同じではありません。

テンプレートを作成して、WordPress の各ページで保持したい領域と不要な領域を選択できるようにすることはできますか?

4

2 に答える 2

5

Yes, here's the codex link for custom page templates;

http://codex.wordpress.org/Theme_Development#Custom_Page_Templates

You create a new template and make it look totally different to the default one if you want, then apply that template to the page in the backend like the shot below;

enter image description here

于 2012-12-09T14:13:25.387 に答える
2

追加する必要があります

<?php
/*
Template Name: Name of your template
*/
?>

テンプレートとして認識されるので、ファイルを .php に保存します

于 2012-12-09T22:32:33.593 に答える