はじめての WordPress コードリーディング · index.php license.txt readme-ja. html...

30
はじめての WordPress コードリーディング @matsudasu

Transcript of はじめての WordPress コードリーディング · index.php license.txt readme-ja. html...

Page 1: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

はじめてのWordPress

コードリーディング

@matsudasu

Page 2: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

コードリーディング II

ソースコードを読むこと

Page 3: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

@ディレクトリ1

Page 4: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

@カレンダー3.6

10周年!

Page 5: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

3.6から本気だすから!

Page 6: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

I ❤ ○•WordBenchに参加する•WPを使って記事を書く•新機能を試してみる•テーマを作ってみる

Page 7: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

ソースコードを読んでみる!

Page 8: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

•(゚Д゚)ハァ•PHPとかわからないし•プログラマーじゃないし

Page 9: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

プログラマー コードリーディング

目的

品質

期限

× ○

× ○

× ○

Page 10: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

なぜコードリーディング?

•WordPressの理解が深まる•PHPの勉強になる•楽しい

Page 11: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

ルール•WordPress 日本語版 3.5.1•初期インストール状態でトップページの表示

•PHPのみ•テーマやプラグイン、外部ライブラリは読み飛ばす

Page 12: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

敵を知る

Page 13: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

@ディレクトリ1

Page 14: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

ファイル数・行数

•451ファイル•合計20万行•最大 5500行•最小 7行•中央値 400行

Page 15: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

ファイル数・行数

•451ファイル → 125ファイル•合計20万行 → 10万行•最大 5500行•最小 7行•中央値 400行

Page 16: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

己を知る

Page 17: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

1. ひらメソッド

Page 18: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

進め方はコンピュータの実行順

hoge1()…hoge2()...

hoge2()…hoge3()...

hoge3()……...

Page 19: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

(読みたいところから読む場合)

hoge1()…hoge2()...

hoge2()…hoge3()...

hoge3()……...

Page 20: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

意味はトップダウンではなくボトムアップ

hoge1()…hoge2()...

hoge2()…hoge3()...

hoge3()……...

Page 21: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

・概要・呼び出し元・実装

・概要・呼び出し元・実装

・概要・呼び出し元・実装

メモを残す

hoge1()…hoge2()...

hoge2()…hoge3()...

hoge3()……...

Page 22: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

2. php.net

Page 23: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

3. Codex

Page 24: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

4. プリントデバッグ

Page 25: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

•var_dump()(echo, print_r)

•exit()(die)

Page 26: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

5. Debug Bar

Page 27: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

•Debug Bar•Debug Bar Extender•Debug Bar Console

Page 28: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

その他

•リモートデバッグ•バージョン管理•ショートコード

Page 29: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

まとめ

•難しくない•今すぐ始められる•ソースコードを読もう

Page 30: はじめての WordPress コードリーディング · index.php license.txt readme-ja. html readme. html index.php languages plugins themes wp- wp- wp wp- wp wp wp wp- wp wp wp-

ありがとうございました