前提・実現したいこと
PHP5から7へ実装中に以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
wordpressで作成しているサイトが真っ白でエラーメッセージのみ表示されている状態です
解析エラー:構文エラー、予期しない「$」、変数(T_VARIABLEを)期待し/home/users/0/lolipop.jp-dp05223748/web/wp/wp-content/plugins/simple-archive-generator/simple_archive.phpに91行目
該当のソースコード
function start_el(&$ output、$ object、$ depth = 0、$ args = Array、$ current_object_id = 0)
// Extend WP's Walker class to properly navigate the category hierarchy... class Simple_Archive_Category_Walker extends Walker { // Variables needed by the WP Walker class. var $tree_type = 'category'; var $db_fields = array ('parent' => 'parent', 'id' => 'term_id'); // Variables used by the Simple Archive plug-in. var $done_post_ids = ' '; var $comment_count = 0; var $post_count = 0; // Output a new element (Category)... function start_el(&$ output、$ object、$ depth = 0、$ args = Array、$ current_object_id = 0) { global $simple_archive_options; $args = wp_parse_args($r); // Only show category heading if there are posts to show; keep count of posts... $posts_to_show = 0; // Get posts for this category. $posts = get_posts('category=' . $category->term_id . '&orderby=post_date&order=DESC&numberposts=9999'); // Build a list of the post IDs that will be shown. foreach($posts as $post) { setup_postdata($post); if(!strpos($this->done_post_ids, '+' . $post->ID . '+') || $simple_archive_options['list_post_once'] != 'on') { $posts_to_show++; } }
試したこと
調べてみて
function start_el(&$output, $object, $depth = 0, $args = [], $current_object_id = 0)
などに置き換えてみましたが変化がありませんでした
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
一部では判断できませんので、全体の流れが分かるコードで提示してください。
置き換え前のコードは全角入ってたり変数名が変数名になってなかったりというのは分かりますが、「置き換えてみた」コードの関数を呼び出してもエラーにはなりません。
https://paiza.io/projects/66G-aXX5UWpu9MT6cviNTQ
あとエラーは略さず訳さずコピペしてください。
日本語訳プラグイン等お使いならその旨を記載してください。
何もしなければ英語となるはずです。
ソースコードを更新しました。こちらで全体の流れはわかるのでしょうか?
コード編集されましたが、これでそのままですか?
閉じ}が足りてないように見えます。
閉じを補完し、「置き換えてみました」のコードに置き換えても同エラーにはなりません。
置き換えたコードも提示してください。
それに・・・
これ、自身で書かれたコードではなく、WordPressのプラグインのコードですか?
それなら、自身でいじるのではなくプラグイン作者に問い合わせるか、プラグインのアップグレードで対応すべきものと思います。
つたない質問で申し訳ございません。wordpressのプラグインのコードになります。そちらに問い合わせしてみます