2017-05-27 11 views
1

私はwordpressに新しく、私は自分のwp-content/themes/mythemeの中に私のwordpressプロジェクトのカスタムテーマを作成しました。私はindex.php、blog.css、style.cssファイルを新しいテーマに追加しますが、ダッシュボードのテーマに移動すると、新しく作成されたテーマはオプションとして表示されません。 他に何が欠けていますか? おかげwordpressカスタムテーマがダッシュボードに表示されない

style.cssに楽しみのためだけに

/* 
Theme Name: Start WordPress 
Theme URI: http://wordpress.org/themes/startwordpress 
Author: Me 
Author URI: http://wordpress.org/ 
Description: The Start WordPress theme is my first custom theme. 
Version: 1.0 
License: GNU General Public License v2 or later 
License URI: http://www.gnu.org/licenses/gpl-2.0.html 
Tags: bootstrap, black, brown, orange, tan, white, yellow, light, one- 
column, two-columns, right-sidebar, flexible-width, custom-header, 
custom-menu, editor-style, featured-images, microformats, post- 
formats, rtl-language-support, sticky-post, translation-ready 
Text Domain: startwordpress 

This theme, like WordPress, is licensed under the GPL . 
Use it to make something cool, have fun, and share what you've learned 
with others. 
*/ 

答えて

0

。 blog.cssを追加しないでください。

あなたがそれを見ることができるまで、style.cssと基本ファイルを使用してください。トラブルシューティング中は、index.phpとstyle.cssを使用して、物事を整えるようにしてください。テーマは表示されません

https://codex.wordpress.org/Theme_Development#Basic_Templates

/* 
Theme Name: Example theme name 
Theme URI: n/a 
Author: you 
Author URI: n/a 
Description: example description... 
Version: 1.0 
License: GNU General Public License v2 or later 
License URI: http://www.gnu.org/licenses/gpl-2.0.html 
Tags: example-tag 
*/ 

、テーマの管理者に以下のようにエラーがあることが多いです。

0

WordPressテーマは、通常、イメージとJavaScriptファイルに加えて、3つの主要な種類のファイルで構成されています。

1。スタイルシートはstyle.cssと呼ばれ、ウェブサイトページの表示(ビジュアルデザインとレイアウト)を制御します。

2 .WordPressサイトのページがWordPressデータベースからの情報を生成してサイトに表示される方法を制御するテンプレートファイル。

3。オプション機能ファイル(functions.php)は、WordPressテーマファイルの一部です。

例: -

あなたのテーマフォルダに到着するのwp-コンテンツ>テーマのパスに従ってください。あなたは、WordPressのデフォルトのテーマ(twentyfifteen、twentyfourteen、twentythirteen、index.php)が表示されます。テーマ用の新しいディレクトリを作成します。私は私のstartwordpressと呼んだ。

/* 
Theme Name: Start WordPress 
Author: Tania Rascia 
Description: Bootstrap Blog template converted to WordPress 
Version: 0.0.1 
Tags: bootstrap 
*/ 

はちょうどこのリンク https://www.taniarascia.com/developing-a-wordpress-theme-from-scratch/

+0

これは次の例のイムでは次のとおりテーマが表示されていないと私は、このチュートリアルに従っているので、ここから行くことがどこかわからないイム。 @Arun – jordan

関連する問題