PHPファイルを編集しており、以下エラー表示を消したいです。
編集してみてもエラーが増える一方で、消えずに困っています。
Notice: Undefined property: 〇〇〇::$postTypes in /ファイル on line 199
Warning: in_array() expects parameter 2 to be array, null given in /ファイル on line 199
以下該当箇所のコードです。
public function filter_getarchives_where($where, $args) { if (!in_array($args['post_type'], $this->postTypes)) { return $where; } // add_filter('getarchives_join', array($this, 'filter_getarchives_join'), 10, 2); // if ($where) { $where .= ' AND '; } return $where . $this->getSqlWhere(); }
お教えいただければと思います。
よろしくお願いいたします。
回答2件
あなたの回答
tips
プレビュー