我试图嵌入我的WordPress管理iframe中,并且它不工作。 我尝试了许多解决方案,例如消除这些线路:
add_action( 'login_init', 'send_frame_options_header', 10, 0 );
add_action( 'admin_init', 'send_frame_options_header', 10, 0 );
但不工作。
我试图嵌入我的WordPress管理iframe中,并且它不工作。 我尝试了许多解决方案,例如消除这些线路:
add_action( 'login_init', 'send_frame_options_header', 10, 0 );
add_action( 'admin_init', 'send_frame_options_header', 10, 0 );
但不工作。
你需要使用remove_action功能:
remove_action( 'login_init', 'send_frame_options_header', 10, 0 );
remove_action( 'admin_init', 'send_frame_options_header', 10, 0 );