워드프레스에서 PHP Warning 없애기

· Web , 워드프레스

워드프레스 환경설정 파일에, php의 경고를 출력할지 여부를 결정하는 변수가 있습니다.

wp-config.php를 열어보시고,

아래와 같은 부분이 있다면,

// Enable WP_DEBUG mode define( ‘WP_DEBUG’, true );

// Enable Debug logging to the /wp-content/debug.log file define( ‘WP_DEBUG_LOG’, true );

truefalse로 바꿔주면 된다.

-끝-

#디버깅#워드프레스#환경설정