- 상태
- 개발자가 해결함
- 보고된 제품
- WPML SEO 2.1.0
- 관련 플러그인/테마
- Rank Math SEO
- 주제 태그
- Compatibility
문제 개요
[rank_math_html_sitemap] 숏코드를 통해 Rank Math SEO 플러그인의 HTML 사이트맵 기능을 사용할 때 치명적인 오류가 발생합니다.
Fatal error: Uncaught TypeError: Cannot access offset of type string on string in .../wp-content/plugins/wp-seo-multilingual/classes/RankMathSEO/Sitemap/Hooks.php on line 69
임시 해결 방법
진행하기 전에 사이트의 전체 사이트 백업이 있는지 확인하세요.
- …/wp-content/plugins/wp-seo-multilingual/classes/RankMathSEO/Sitemap/Hooks.php 파일을 편집하세요.
- 66번 줄 바로 앞:
return Obj::assoc( 'loc', Obj::propOr( $url['loc'], (int) Obj::prop( 'ID', $object ), $this->secondaryHomesById ), $url );
- 다음 코드를 추가하세요:
if (!is_array($url)){ $test = $url; $url = array(); $url['loc'] = $test; }