Story/php
워드프레스를 iframe 으로 불러서 사용시 로그인이 되지 않는 문제
Stdio
2016. 12. 15. 11:27
반응형
워드프레스를 어떠한 이유로 iframe 으로 불러서 사용하는경우가 있다.
하지만 login 을 하려해도 오류가 발생해서 되지 않는다.
Refused to display 'https://www.wordpress.com/wp-login.php' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.
그럴때 해결방법은
By default WordPress sends an HTTP header to prevent iframe embedding on /wp_admin/ and /wp-login.php:
X-Frame-Options: SAMEORIGIN That's a security feature. If you want to remove this header remove the filters:
remove_action( 'login_init', 'send_frame_options_header' );
remove_action( 'admin_init', 'send_frame_options_header' );
참조주소 http://wordpress.stackexchange.com/questions/137545/custom-login-iframe-doesnt-work
반응형