/** * mu-plugins/fudo-search-statusfix.php * 404 になってしまう検索結果を 200 で返すだけのパッチ */ add_action( 'template_redirect', function () { if ( isset( $_GET['bukken'] ) && $_GET['bukken'] === 'jsearch' ) { status_header( 200 ); // ← ヘッダーだけ 200 に add_filter( 'wp_title', '__return_null', 99 ); // Yoast 等が404用タイトルを出さないよう保険 } } );