2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[WordPress] add_action, add_filterなどはそろそろ無名関数で書いてもよい

Last updated at Posted at 2015-09-19

※ ただし、PHP5.3以上に限る

とはいえ、PHP5.2以下サポート終了してるので、そろそろ・・・ということで

使い方

よくサンプルコードでアクションフックは以下の様に書かれているが

add_action('init', 'hoge');

function hoge(){
    //処理
});

やっぱりこっちのほうが見通しよくてcool

add_action('init', function(){
    //処理
});

WordPressはカスタマイズしだすとコールバックまみれになるので
これで書いたほうが圧倒的によいと思ってます。

※ ただし、PHP5.3以上に限る

大事なことなので2回
動作させるサーバーのPHPのバージョン確認はしっかり行いましょう。

2
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?