在iframe内嵌入WordPress管理(Embed wordpress admin inside

2019-10-22 11:51发布

我试图嵌入我的WordPress管理iframe中,并且它不工作。 我尝试了许多解决方案,例如消除这些线路:

add_action( 'login_init', 'send_frame_options_header', 10, 0 );
add_action( 'admin_init', 'send_frame_options_header', 10, 0 );

但不工作。

Answer 1:

你需要使用remove_action功能:

remove_action( 'login_init', 'send_frame_options_header', 10, 0 );
remove_action( 'admin_init', 'send_frame_options_header', 10, 0 );


文章来源: Embed wordpress admin inside an iframe