Skip to content

Latest commit

 

History

History
271 lines (200 loc) · 8.63 KB

README-ja.md

File metadata and controls

271 lines (200 loc) · 8.63 KB

Iemoto

これは、WordPressスターターテーマ _s をベースにしたテーマ用の grunt-init テンプレートです。

Iemoto は _s の全ての修正と機能を取り入れています。

Iemoto は WordPress テーマを開発する上で必要な様々なプロセスを自動化することができます。

インストール

grunt-init をインストール

まずはじめに grunt-init をインストールしてください。

npm install -g grunt-init

次に、~/.grunt-init ディレクトリを作成してください。

mkdir ~/.grunt-init

Iemoto をインストール

Iemoto を git から取得してください。

git clone [email protected]:megumiteam/iemoto.git ~/.grunt-init/iemoto

https を使う場合は以下のとおり。

git clone https://github.com/megumiteam/iemoto.git ~/.grunt-init/iemoto

Sass(Compass)

style.css および editor-style.css の作成に Sass および Compass を利用していますので、事前にインストールしておいてください。

gulp

js や sass (Compass) のコンパイルなどに gulp.js を利用することも出来ます。

$ npm install --global gulp

使い方

wp-content/themes ディレクトリ以下に、任意の名前のテーマ用ディレクトリを作成してください。

mkdir wp-content/themes/my-theme

ディレクトリを作成後そのディレクトリに移動し、次に以下のコマンドを実行して、テーマのベースとなる各種のファイルを作ります。

grunt-init iemoto

このコマンドを実行すると、テーマ名やDescription、ライセンスなど、いくつかの情報の入力を求められます。

$ grunt-init iemoto
Running "init:iemoto" (init) task
This task will create one or more files in the current directory, based on the
environment and the answers to a few questions. Note that answering "?" to any
question will show question-specific help and answering "none" to most questions
will leave its value blank.

Please answer the following:
[?] Project title (Iemoto) 
[?] PHP function prefix (alpha and underscore characters only) (iemoto) 
[?] Description (This is a awesome cool plugin.) 
[?] Project homepage (https://digitalcube.jp/) 
[?] Author name (Digitalcube Co,.Ltd) 
[?] Author url (https://digitalcube.jp/) 
[?] Use gulp? (y/N) 
[?] Do you need to make any changes to the above before continuing? (y/N)

最後に、変更はありませんか?と尋ねられるので、N と入力するか、そのままエンターキーを押すとテーマのテンプレートが作成されます。

[?] Use gulp? (y/N) y にすると gulp の実行に必要なファイルが作成されます(デフォルトは N です)。

次に npm install コマンドを実行して grunt (あるいは gulp )の実行に必要な Grunt プラグインをダウンロードしてください。

npm install

ここで、インストールされる Grunt (gulp) プラグインは package.json 内で定義されています。

以上が完了すると、ディレクトリ内に以下のようにテーマ用のファイルが生成されていることを確認できると思います。

├── 404.php
├── archive.php
├── comments.php
├── footer.php
├── functions.php
├── Gruntfile.js (or gulpfile.js )
├── header.php
├── inc
│   ├── custom-header.php
│   ├── customizer.php
│   ├── jetpack.php
│   ├── template-functions.php
│   └── template-tags.php
├── index.php
├── js
│   ├── <themename>.js
│   ├── customizer.js
│   ├── navigation.js
│   └── skip-link-focus-fix.js
├── languages
│   ├── <themename>.pot
│   ├── ja.mo
│   ├── ja.po
│   └── readme.txt
├── node_modules
├── package.json
├── page.php
├── README.md
├── readme.txt
├── rtl.css
├── sass
│   ├── _normalize.scss
│   ├── editor-style.scss
│   ├── style.scss
│   ├── elements
│   │   ├── _elements.scss
│   │   ├── _lists.scss
│   │   └── _tables.scss
│   ├── forms
│   │   ├── _buttons.scss
│   │   ├── _fields.scss
│   │   └── _forms.scss
│   ├── layout
│   │   ├── _content-sidebar.scss
│   │   └── _sidebar-content.scss
│   ├── media
│   │   ├── _captions.scss
│   │   ├── _galleries.scss
│   │   └── _media.scss
│   ├── mixins
│   │   └── _mixins-master.scss
│   ├── modules
│   │   ├── _accessibility.scss
│   │   ├── _alignments.scss
│   │   ├── _clearings.scss
│   │   └── _infinite-scroll.scss
│   ├── navigation
│   │   ├── _links.scss
│   │   ├── _menus.scss
│   │   └── _navigation.scss
│   ├── site
│   │   ├── _site.scss
│   │   ├── primary
│   │   │   ├── _comments.scss
│   │   │   └── _posts-and-pages.scss
│   │   └── secondary
│   │   │   └── _widgets.scss
│   ├── typography
│   │   ├── _copy.scss
│   │   ├── _headings.scss
│   │   └── _typography.scss
│   └── variables-site
│        ├── _colors.scss
│        ├── _structure.scss
│        ├── _typography.scss
│        └── _variables-site.scss
├── screenshot.png
├── search.php
├── sidebar.php
├── single.php
├── style.css
└── template-parts
      ├── content-none.php
      ├── content-page.php
      ├── content-search.php
      └── content.php

以上でテーマの開発に必要な環境が整いました。

デフォルト値について

grunt-init 実行時に表示される各種プロンプトにはデフォルト値を設定することができます。

名前やURL等は、あらかじめデフォルト値を設定してくとさらに便利になります。

デフォルト値を設定するには以下のように、defaults.json を設置し、そのファイルを編集してください。

cp ~/.grunt-init/iemoto/defaults.json.sample ~/.grunt-init/defaults.json

grunt での SASS のコンパイルと JavaScript コードの検証について

.js.scss などのファイルを修正したら、以下のコマンドを実行して下さい。

grunt

gulp での SASS のコンパイルと JavaScript コードの検証について

.js.scss などのファイルを修正したら、以下のコマンドを実行して下さい。

gulp

JavaScript のみの場合は gulp js 、Sass(Compass) のみの場合は gulp compass も利用できます。

watch について

grunt watch あるいは gulp watch を使えば、ファイルの更新を grunt(gulp) が監視し、自動的に Sass(Compass) のコンパイル、JavaScript コードの検証の作業を行います。

grunt watch
// or
gulp watch

watch を終了するには、キーボードで [control]+[c] を押して下さい。

JavaScripts と css のバージョン

Iemoto は package.json に記載されいているバージョンを grunt あるいは gulp 実行時に style.css と .js のコメント部分に付与します。

"version": "0.1.0",

このバージョン番号は wp_enqueue_style()wp_enqueue_script() でも使われます。

Debug モードと Sourcemap

WordPress をデバッグモードにしていると、テーマは Sourcemap が付与された css/style.css を読み込みます。

Sourcemap の作成には Sass 3.3.0 以上が必要です。

公式ディレクトリ等へ登録する際の注意

公式ディレクトリに登録する際には、node_modules ディレクトリを svn:ignore しておきましょう。

フィードバック

皆様からのフィードバックをお待ちしています。

Contributors