Ver.1.1.11

投稿日:2022-09-11 投稿者:PS カテゴリ:その他 タグ: , , , ,

  • theme ver.2.1.21 対応
  • PHP8 の場合、投稿時などに致命的なエラーになる。
  • これまで、plugin モジュールのクラス外で add_filter() を実行していたが、クラス内部へ移動。… どう変わるか?
// 旧
add_filter('content_save_pre', 'Smapple21::allow_iframe_tag');
class Smapple21 { ... }

// 新
function __construct(){
  if( is_user_logged_in() ){
    add_filter('content_save_pre', [$this, 'allow_iframe_tag']);
  }
}