我不确定其含义,但我使用自定义菜单和iframe
在仪表板中具有外部web应用程序。
function brsfl_menu() {
add_menu_page(
\'Fotos\',
\'<span style="color:#e57300;">Photo Gallery</span>\',
\'edit_pages\',
\'photogallery\',
\'brsfl_menu_options\',
get_bloginfo(\'template_url\') . \'/images/fotos-icon.png\'
);
}
function brsfl_menu_options() {
echo \'<div class="wraper">\';
echo \'<iframe src ="\'. get_option(\'home\') .\'/slideshow/index.php" width="100%" height="700">\';
echo \'</div>\';
}
add_action(\'admin_menu\', \'brsfl_menu\');