web-dev-qa-db-ja.com

Style.cssファイルのヘッダーに必要な情報

Style.cssファイルのヘッダに必要なテーマの詳細はどれですか?

私は個人的な使用のための私の最初のテーマを開発しているので、私は本当にライセンス、ライセンスURI、作者、作者URIなどのようなものを含める必要があります.

WordPressのドキュメントでは例を挙げていますが、必要なものは参照していません。誰か知っている?

/*
Theme Name: Twenty Thirteen
Theme URI: http://wordpress.org/themes/twentythirteen
Author: the WordPress team
Author URI: http://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: 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: twentythirteen

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.
*/
3
Derek

簡単なテストでは、スタンドアロンテーマの場合、このヘッダーには実際には何も必要ないことが示されています。完全に空白のヘッダーを持つテーマは、フロントエンドとバックエンドの両方で、正しく登録およびロードされます。

それが子テーマの場合はTemplate:行が必要です。

しかしながら...

あなたのテーマのCSSスタイル情報に加えて、style.cssはテーマの詳細をコメントの形で提供します。スタイルシートは、テーマの詳細をコメントの形式で提供しなければなりません。テーマ選択ダイアログで問題を引き起こす可能性があるため、2つのテーマのコメントヘッダーに同じ詳細をリストすることはできません。既存のテーマをコピーして独自のテーマを作成する場合は、必ず最初にこの情報を変更してください。

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

たとえば、同じトリックを2回試した場合など、すべて空白のままにすると問題が発生する可能性があります。テーマに最小限の詳細を与えるだけで、あなたが公開していない個人的なテーマには問題ないはずです。いう...

/*
Theme Name: Twenty Thirteen
Author: the WordPress team
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 1.0
*/
2
s_ha_dum

必要なものとベストプラクティスであるものには違いがあります。 Developerプラグインをロードすると、それがロードするプラグインの1つが「テーマチェッカー」と呼ばれます。テーマチェッカーは、Wordpressディレクトリに送信するテーマ用ですが、プライベートのカスタムテーマを確認することもできます。

あなたがそれを実行するならば、あなたはWordpressが良いテーマで探しているというあなたが逃しているものの全てを見るでしょう。あなたのクライアントが新しいWebデザイナーを手に入れた場合やテーマを共有したい場合は、そこにもっと多くのメタ情報があるといいでしょう。

1
DanSully