php8wordpress デバッグモードで、プラグイン Breadcrumb NavXT を使用すると下記のようなエラーが表示される。
Deprecated: Required parameter $endpoint follows optional parameter $args in /***/public_html/www.komagane-skiclub.com/contents/wp-content/plugins/breadcrumb-navxt/class.bcn_rest_controller.php on line 64
以下のページを参考にさせていただいた。
https://wporg.ibadboy.net/support/topic/php-8-deprecated-class-bcn_rest_controller-php-on-line-64/
もちろん64行目
protected function register_rest_route($namespace, $route, $args = array(), $override = false, $endpoint)
↓
protected function register_rest_route($namespace, $route, $endpoint, $args = array(), $override = false)