根据我在问题中的评论,我测试了添加菜单项以打开iframe
在其屏幕中。
正如所料,Gmail不允许在iframe
. 但一个普通的部落网络邮件确实有效。
add_action( \'admin_menu\', \'embed_webmail_wpse_91871\' );
function embed_webmail_wpse_91871()
{
// Reference: http://codex.wordpress.org/Function_Reference/add_menu_page
// Check it, specially regarding the last parameter ($position), i.e.: 6
add_menu_page(
\'webmail\',
\'Webmail\',
\'edit_pages\',
\'webmail\',
\'webmail_iframe_wpse_91871\',
\'http://i.imgur.com/Vk42k.png\',
4 // position, just after Dashboard
);
}
function webmail_iframe_wpse_91871()
{
?>
<div class="wraper">
<iframe
src ="http://example.com/webmail"
width="100%" height="700" />
</div>
<?php
}
结果如下:
尤其是,我从未见过在WordPress中使用webmail的插件<在我看来:
对于只需要一个新的浏览器选项卡就可以工作的东西来说,似乎过于复杂了听起来像是在Word中嵌入Outlook