- 상태
- 개발자 대기 중
- 관련 플러그인/테마
- Table of Contents
- 주제 태그
- Compatibility
문제 개요
Table of Contents (TOC) 플러그인을 사용할 때 Heading text, Show text 또는 Hide text와 같은 관리 화면 문자열을 번역할 수 있지만, 해당 번역이 프런트엔드에 표시되지 않습니다.
임시 해결 방법
진행하기 전에 사이트를 전체 백업하세요.
- …/wp-content/plugins/table-of-contents-plus/toc.php 파일을 여세요.
- 37번째 줄을 찾으세요.
- 다음을
// do the magic $toc_plus = new TOC_Plus();
다음으로 바꾸세요.
// do the magic add_action( 'init', 'toc_init' ); function toc_init() { global $toc_plus; $toc_plus = new TOC_Plus(); }